402 lines
6.6 KiB
SCSS
402 lines
6.6 KiB
SCSS
/**
|
|
* File content holder
|
|
*
|
|
*/
|
|
.file-holder {
|
|
border: 1px solid $border-color;
|
|
border-radius: $border-radius-default;
|
|
|
|
&.file-holder-no-border {
|
|
border: 0;
|
|
}
|
|
|
|
&.file-holder-bottom-radius {
|
|
border-radius: 0 0 $border-radius-small $border-radius-small;
|
|
}
|
|
|
|
&.readme-holder {
|
|
margin: $gl-padding 0;
|
|
|
|
&.limited-width-container .file-content {
|
|
max-width: $limited-layout-width;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
|
|
table {
|
|
@extend .table;
|
|
}
|
|
|
|
.file-title {
|
|
position: relative;
|
|
background-color: $gray-light;
|
|
border-bottom: 1px solid $border-color;
|
|
margin: 0;
|
|
text-align: left;
|
|
padding: 10px $gl-padding;
|
|
word-wrap: break-word;
|
|
border-radius: $border-radius-default $border-radius-default 0 0;
|
|
|
|
&.file-title-clear {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
background-color: transparent;
|
|
|
|
.file-actions {
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
.file-actions {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 15px;
|
|
|
|
.btn {
|
|
padding: 0 10px;
|
|
font-size: 13px;
|
|
line-height: 28px;
|
|
}
|
|
}
|
|
|
|
a:not(.btn) {
|
|
color: $gl-text-color;
|
|
}
|
|
|
|
.left-options {
|
|
margin-top: -3px;
|
|
}
|
|
}
|
|
|
|
.file-blame-legend {
|
|
background-color: $gray-light;
|
|
text-align: right;
|
|
padding: 8px $gl-padding;
|
|
border-bottom: 1px solid $border-color;
|
|
|
|
@media (max-width: $screen-xs-max) {
|
|
text-align: left;
|
|
}
|
|
|
|
.left-label {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.right-label {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.legend-box {
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 10px;
|
|
padding: 0 2px;
|
|
}
|
|
|
|
@for $i from 0 through 5 {
|
|
.legend-box-#{$i} {
|
|
background-color: mix($blame-cyan, $blame-blue, $i / 5 * 100%);
|
|
}
|
|
}
|
|
|
|
@for $i from 1 through 4 {
|
|
.legend-box-#{$i + 5} {
|
|
background-color: mix($blame-gray, $blame-cyan, $i / 4 * 100%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.file-content {
|
|
background: $white-light;
|
|
|
|
&.image_file,
|
|
&.video {
|
|
background: $file-image-bg;
|
|
text-align: center;
|
|
padding: 30px;
|
|
|
|
img,
|
|
video {
|
|
max-width: 80%;
|
|
}
|
|
}
|
|
|
|
&.wiki {
|
|
padding: $gl-padding;
|
|
|
|
@media (min-width: $screen-md-min) {
|
|
padding: $gl-padding * 2;
|
|
}
|
|
}
|
|
|
|
&.blob-no-preview {
|
|
background: $blob-bg;
|
|
text-shadow: 0 1px 2px $white-light;
|
|
padding: 100px 0;
|
|
}
|
|
|
|
/**
|
|
* Blame file
|
|
*/
|
|
&.blame {
|
|
table {
|
|
border: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
tr {
|
|
border-bottom: 1px solid $blame-border;
|
|
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
td {
|
|
border-top: 0;
|
|
border-bottom: 0;
|
|
|
|
&:first-child {
|
|
border-left: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
border-right: 0;
|
|
}
|
|
|
|
&.blame-commit {
|
|
padding: 5px 10px;
|
|
min-width: 400px;
|
|
max-width: 400px;
|
|
background: $gray-light;
|
|
border-left: 3px solid;
|
|
|
|
.commit-row-title {
|
|
display: flex;
|
|
}
|
|
|
|
.item-title {
|
|
flex: 1;
|
|
margin-right: 0.5em;
|
|
}
|
|
}
|
|
|
|
&.line-numbers {
|
|
float: none;
|
|
border-left: 1px solid $blame-line-numbers-border;
|
|
|
|
i {
|
|
float: none;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
&.lines {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
@for $i from 0 through 5 {
|
|
td.blame-commit-age-#{$i} {
|
|
border-left-color: mix($blame-cyan, $blame-blue, $i / 5 * 100%);
|
|
}
|
|
}
|
|
|
|
@for $i from 1 through 4 {
|
|
td.blame-commit-age-#{$i + 5} {
|
|
border-left-color: mix($blame-gray, $blame-cyan, $i / 4 * 100%);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.logs {
|
|
background: $logs-bg;
|
|
max-height: 700px;
|
|
overflow-y: auto;
|
|
|
|
ol {
|
|
margin-left: 40px;
|
|
padding: 10px 0;
|
|
border-left: 1px solid $border-color;
|
|
margin-bottom: 0;
|
|
background: $white-light;
|
|
|
|
li {
|
|
color: $logs-li-color;
|
|
|
|
p {
|
|
margin: 0;
|
|
color: $logs-p-color;
|
|
line-height: 24px;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
&:hover {
|
|
background: $row-hover;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Code file
|
|
*/
|
|
&.code {
|
|
padding: 0;
|
|
}
|
|
|
|
.list-inline.previews {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-content: flex-start;
|
|
align-items: baseline;
|
|
|
|
.preview {
|
|
padding: $gl-padding;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
span.idiff {
|
|
&.left {
|
|
border-top-left-radius: 2px;
|
|
border-bottom-left-radius: 2px;
|
|
}
|
|
|
|
&.right {
|
|
border-top-right-radius: 2px;
|
|
border-bottom-right-radius: 2px;
|
|
}
|
|
}
|
|
|
|
.file-stats {
|
|
ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 10px 0;
|
|
|
|
li {
|
|
padding: 3px 0;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
|
|
.new-file {
|
|
a {
|
|
color: $gl-text-green;
|
|
}
|
|
}
|
|
|
|
.renamed-file {
|
|
a {
|
|
color: $gl-text-orange;
|
|
}
|
|
}
|
|
|
|
.deleted-file {
|
|
a {
|
|
color: $gl-text-red;
|
|
}
|
|
}
|
|
|
|
.edit-file {
|
|
a {
|
|
color: $gl-text-color;
|
|
}
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
|
|
.new-file {
|
|
color: $notify-new-file;
|
|
}
|
|
|
|
.deleted-file {
|
|
color: $notify-deleted-file;
|
|
}
|
|
}
|
|
}
|
|
|
|
.file-title-flex-parent {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
background-color: $gray-light;
|
|
border-bottom: 1px solid $border-color;
|
|
padding: 5px $gl-padding;
|
|
margin: 0;
|
|
border-radius: $border-radius-default $border-radius-default 0 0;
|
|
|
|
.file-header-content {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
padding-right: 30px;
|
|
position: relative;
|
|
}
|
|
|
|
.btn-clipboard {
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
a {
|
|
color: $gl-text-color;
|
|
}
|
|
|
|
small {
|
|
margin: 0 10px 0 0;
|
|
}
|
|
|
|
.file-actions {
|
|
white-space: nowrap;
|
|
|
|
.btn {
|
|
padding: 0 10px;
|
|
font-size: 13px;
|
|
line-height: 28px;
|
|
display: inline-block;
|
|
float: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: $screen-xs-max) {
|
|
display: block;
|
|
|
|
.file-actions {
|
|
white-space: normal;
|
|
|
|
.btn-group {
|
|
padding-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.is-stl-loading {
|
|
.stl-controls {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.file-fork-suggestion {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
background-color: $gray-light;
|
|
border-bottom: 1px solid $border-color;
|
|
padding: 5px $gl-padding;
|
|
}
|
|
|
|
.file-fork-suggestion-note {
|
|
margin-right: 1.5em;
|
|
}
|
|
|
|
.label-lfs {
|
|
color: $common-gray-light;
|
|
border: 1px solid $common-gray-light;
|
|
}
|