gitlab-org--gitlab-foss/app/assets/stylesheets/framework/highlight.scss

59 lines
1.0 KiB
SCSS
Raw Normal View History

.file-content.code {
border: none;
box-shadow: none;
margin: 0;
padding: 0;
table-layout: fixed;
pre {
padding: 10px;
border: none;
border-radius: 0;
font-family: $monospace_font;
font-size: $code_font_size !important;
2015-01-27 02:56:56 +00:00
line-height: $code_line_height !important;
margin: 0;
overflow: auto;
overflow-y: hidden;
white-space: pre;
word-wrap: normal;
2016-01-25 10:42:47 +00:00
border-left: 1px solid;
code {
font-family: $monospace_font;
white-space: pre;
word-wrap: normal;
padding: 0;
.line {
2016-01-25 10:42:47 +00:00
display: inline-block;
}
}
}
.line-numbers {
padding: 10px;
text-align: right;
float: left;
a {
font-family: $monospace_font;
display: block;
font-size: $code_font_size !important;
2015-01-27 02:56:56 +00:00
line-height: $code_line_height !important;
2014-01-31 01:12:41 +00:00
white-space: nowrap;
i {
float: left;
margin-top: 3px;
margin-right: 5px;
2014-01-31 01:12:41 +00:00
visibility: hidden;
}
&:hover i {
2014-01-31 01:12:41 +00:00
visibility: visible;
}
}
}
}