debian-mirror-gitlab/app/assets/stylesheets/framework/highlight.scss

85 lines
1.5 KiB
SCSS
Raw Normal View History

2015-04-26 12:48:37 +05:30
.file-content.code {
2018-03-17 18:26:18 +05:30
border: 0;
2014-09-02 18:07:02 +05:30
box-shadow: none;
2016-06-02 11:05:42 +05:30
margin: 0;
padding: 0;
2014-09-02 18:07:02 +05:30
table-layout: fixed;
pre {
2016-09-29 09:46:39 +05:30
padding: 10px 0;
2018-03-17 18:26:18 +05:30
border: 0;
2020-03-13 15:44:24 +05:30
border-radius: 0 0 $border-radius-default;
2018-11-18 11:00:15 +05:30
font-family: $monospace-font;
font-size: $code-font-size;
2019-09-04 21:01:54 +05:30
line-height: 1.5;
2014-09-02 18:07:02 +05:30
margin: 0;
2015-04-26 12:48:37 +05:30
overflow: auto;
overflow-y: hidden;
white-space: pre;
word-wrap: normal;
2016-02-05 20:25:01 +05:30
border-left: 1px solid;
2014-09-02 18:07:02 +05:30
code {
2016-09-29 09:46:39 +05:30
display: inline-block;
min-width: 100%;
2018-11-18 11:00:15 +05:30
font-family: $monospace-font;
2016-09-29 09:46:39 +05:30
white-space: normal;
2014-09-02 18:07:02 +05:30
word-wrap: normal;
padding: 0;
.line {
2016-09-29 09:46:39 +05:30
display: block;
width: 100%;
padding-left: 10px;
padding-right: 10px;
white-space: pre;
2014-09-02 18:07:02 +05:30
}
}
}
.line-numbers {
padding: 10px;
text-align: right;
float: left;
2019-09-04 21:01:54 +05:30
border-bottom-left-radius: $border-radius-default;
2014-09-02 18:07:02 +05:30
a {
2018-11-18 11:00:15 +05:30
font-family: $monospace-font;
2014-09-02 18:07:02 +05:30
display: block;
2019-02-15 15:39:39 +05:30
font-size: $code-font-size !important;
2014-09-02 18:07:02 +05:30
white-space: nowrap;
2020-03-13 15:44:24 +05:30
i,
svg {
2016-06-02 11:05:42 +05:30
float: left;
margin-top: 3px;
margin-right: 5px;
2014-09-02 18:07:02 +05:30
visibility: hidden;
}
2017-08-17 22:00:37 +05:30
&:hover,
&:focus {
outline: none;
2020-03-13 15:44:24 +05:30
i,
svg {
2017-08-17 22:00:37 +05:30
visibility: visible;
}
2014-09-02 18:07:02 +05:30
}
}
}
2020-03-13 15:44:24 +05:30
pre .line,
.line-numbers a {
font-size: 0.8125rem;
line-height: 1.1875rem;
min-height: 1.1875rem;
}
2015-04-26 12:48:37 +05:30
}
2019-02-15 15:39:39 +05:30
// Vertically aligns <table> line numbers (eg. blame view)
2019-12-04 20:38:33 +05:30
// see https://gitlab.com/gitlab-org/gitlab-foss/issues/54048
2019-02-15 15:39:39 +05:30
td.line-numbers {
line-height: 1;
}