d6e5299fb6
Updated snippets UI ![Screen_Shot_2016-05-18_at_14.11.54](/uploads/2544351e50f19a36c4ba9a7a92d5544b/Screen_Shot_2016-05-18_at_14.11.54.png) Closes #14328 See merge request !4194
191 lines
3.1 KiB
SCSS
191 lines
3.1 KiB
SCSS
/**
|
|
* File content holder
|
|
*
|
|
*/
|
|
.file-holder {
|
|
border: 1px solid $border-color;
|
|
|
|
&.file-holder-no-border {
|
|
border: 0;
|
|
}
|
|
|
|
&.readme-holder {
|
|
margin: $gl-padding-top 0;
|
|
}
|
|
|
|
table {
|
|
@extend .table;
|
|
}
|
|
|
|
.file-title {
|
|
position: relative;
|
|
background-color: $background-color;
|
|
border-bottom: 1px solid $border-color;
|
|
margin: 0;
|
|
text-align: left;
|
|
padding: 10px $gl-padding;
|
|
word-wrap: break-word;
|
|
border-radius: 3px 3px 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-dark-link-color;
|
|
}
|
|
|
|
.left-options {
|
|
margin-top: -3px;
|
|
}
|
|
}
|
|
.file-content {
|
|
background: #fff;
|
|
|
|
&.image_file {
|
|
background: #eee;
|
|
text-align: center;
|
|
img {
|
|
padding: 100px;
|
|
max-width: 50%;
|
|
}
|
|
}
|
|
|
|
&.wiki {
|
|
padding: $gl-padding;
|
|
|
|
.highlight {
|
|
margin-bottom: 9px;
|
|
|
|
> pre {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.blob-no-preview {
|
|
background: #eee;
|
|
text-shadow: 0 1px 2px #fff;
|
|
padding: 100px 0;
|
|
}
|
|
|
|
/**
|
|
* Blame file
|
|
*/
|
|
&.blame {
|
|
table {
|
|
border: none;
|
|
box-shadow: none;
|
|
margin: 0;
|
|
}
|
|
tr {
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
td {
|
|
&:first-child {
|
|
border-left: none;
|
|
}
|
|
&:last-child {
|
|
border-right: none;
|
|
}
|
|
}
|
|
img.avatar {
|
|
border: 0 none;
|
|
float: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
td.blame-commit {
|
|
background: #f9f9f9;
|
|
min-width: 350px;
|
|
|
|
.commit-author-link {
|
|
color: #888;
|
|
}
|
|
}
|
|
td.line-numbers {
|
|
float: none;
|
|
border-left: 1px solid #ddd;
|
|
|
|
i {
|
|
float: none;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
td.lines {
|
|
padding: 0;
|
|
code {
|
|
font-family: $monospace_font;
|
|
}
|
|
pre {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.logs {
|
|
background: #eee;
|
|
max-height: 700px;
|
|
overflow-y: auto;
|
|
|
|
ol {
|
|
margin-left: 40px;
|
|
padding: 10px 0;
|
|
border-left: 1px solid $border-color;
|
|
margin-bottom: 0;
|
|
background: white;
|
|
li {
|
|
color: #888;
|
|
p {
|
|
margin: 0;
|
|
color: #333;
|
|
line-height: 24px;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
&:hover {
|
|
background: $row-hover;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Code file
|
|
*/
|
|
&.code {
|
|
padding: 0;
|
|
-webkit-overflow-scrolling: auto; // See https://gitlab.com/gitlab-org/gitlab-ce/issues/13987
|
|
}
|
|
}
|
|
}
|
|
|
|
span.idiff {
|
|
&.left {
|
|
border-top-left-radius: 2px;
|
|
border-bottom-left-radius: 2px;
|
|
}
|
|
|
|
&.right {
|
|
border-top-right-radius: 2px;
|
|
border-bottom-right-radius: 2px;
|
|
}
|
|
}
|