This file ( 3kB ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
/*
.p3x-gitlilst-file-fragment-heading-right {
float: right;
}
.p3x-gitlist-file-fragment-panel {
.panel-body {
padding: 0 !important;
.p3x-gitlist-file-fragment-text {
padding: $panel-body-padding !important;
}
.CodeMirror-wrap {
border: none !important;
}
}
}
*/
$fontSize: 12px;
.p3x-gitlist-file-fragment-text {
overflow-x: auto;
white-space: pre;
margin: 0;
padding-bottom: 0;
padding-top: 0;
font-family: monospace;
font-size: $fontSize;
}
// Blame view
.p3x-gitlist-blame-container {
overflow: hidden;
font-family: monospace;
font-size: $fontSize;
}
.p3x-gitlist-blame-row {
display: flex;
align-items: stretch;
border-bottom: 1px solid var(--bs-border-color, #{$list-group-border});
&:last-child {
border-bottom: none;
}
.p3x-gitlist-dark & {
&.p3x-gitlist-blame-odd {
background-color: rgba(255, 255, 255, 0.03);
}
}
.p3x-gitlist-light & {
&.p3x-gitlist-blame-odd {
background-color: rgba(0, 0, 0, 0.02);
}
}
}
.p3x-gitlist-blame-hash {
width: 80px;
min-width: 80px;
padding: 2px 8px;
border-right: 1px solid var(--bs-border-color, #{$list-group-border});
display: flex;
align-items: center;
.p3x-gitlist-dark & {
background-color: rgba(255, 255, 255, 0.05);
}
.p3x-gitlist-light & {
background-color: rgba(0, 0, 0, 0.03);
}
a {
font-size: 11px;
}
}
.p3x-gitlist-blame-line-num {
width: 45px;
min-width: 45px;
padding: 2px 8px 2px 0;
text-align: right;
opacity: 0.5;
border-right: 1px solid var(--bs-border-color, #{$list-group-border});
user-select: none;
display: flex;
align-items: center;
justify-content: flex-end;
}
.p3x-gitlist-blame-content {
flex: 1;
min-width: 0;
overflow-x: auto;
}
.p3x-gitlist-blame-code {
margin: 0;
padding: 2px 8px;
border: none;
background: transparent;
font-size: $fontSize;
white-space: pre;
}
// Legacy blame classes (keep for backwards compat)
.p3x-gitlist-file-fragment-blame-line {
font-family: monospace;
font-size: $fontSize;
display: flex;
max-width: 100%;
overflow-x: auto;
clear: both;
border-top: 1px solid $list-group-border;
border-left: 1px solid $list-group-border;
border-right: 1px solid $list-group-border;
}
.p3x-gitlist-file-fragment-blame-line-bottom {
border-bottom: 1px solid $list-group-border;
}
.p3x-gitlist-file-fragment-blame-line-header {
$width: 100px;
border-right: 1px solid $list-group-border;
padding-left: $padding-base-vertical;
background-color: rgba($list-group-border, 0.4);
float: left;
width: $width;
min-width: $width;
}