gitlab-org--gitlab-foss/app/assets/stylesheets/snippets.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

177 lines
3.8 KiB
SCSS
Raw Normal View History

@import 'framework/variables';
2018-02-06 13:33:18 +00:00
.gitlab-embed-snippets {
@import 'highlight/embedded';
@import 'framework/images';
2018-02-06 13:33:18 +00:00
$border-style: 1px solid $border-color;
2018-07-24 21:17:49 +00:00
font-family: $regular-font;
2018-02-06 13:33:18 +00:00
font-size: $gl-font-size;
2018-07-24 21:17:49 +00:00
line-height: $code-line-height;
2018-02-06 13:33:18 +00:00
color: $gl-text-color;
margin: 20px;
font-weight: $gl-font-weight-normal;
2018-02-06 13:33:18 +00:00
2018-03-03 09:23:42 +00:00
.gl-snippet-icon {
display: inline-block;
/* stylelint-disable-next-line function-url-quotes */
2018-03-03 09:23:42 +00:00
background: url(asset_path('ext_snippet_icons/ext_snippet_icons.png')) no-repeat;
overflow: hidden;
text-align: left;
width: 16px;
height: 16px;
background-size: cover;
&.gl-snippet-icon-doc-code { background-position: 0 0; }
&.gl-snippet-icon-doc-text { background-position: 0 -16px; }
2018-03-07 13:06:16 +00:00
&.gl-snippet-icon-download { background-position: 0 -32px; }
&.gl-snippet-icon-copy-to-clipboard { background-position: 0 -48px; }
2018-03-03 09:23:42 +00:00
}
2018-02-06 13:33:18 +00:00
.blob-viewer {
background-color: $white;
2018-02-06 13:33:18 +00:00
text-align: left;
}
.file-holder {
margin: 0;
}
2018-02-06 13:33:18 +00:00
.file-content.code {
border: $border-style;
border-radius: 0 0 $border-radius-default $border-radius-default;
2018-02-06 13:33:18 +00:00
display: flex;
box-shadow: none;
margin: 0;
padding: 0;
table-layout: fixed;
overflow-x: auto;
2018-02-06 13:33:18 +00:00
.blob-content {
pre {
padding: 10px;
border: 0;
border-radius: 0;
margin: 0;
overflow: auto;
overflow-y: hidden;
white-space: pre;
word-wrap: normal;
border-left: $border-style;
text-size-adjust: 100%;
-webkit-text-size-adjust: 100%; /* stylelint-disable-line property-no-vendor-prefix */
2018-02-06 13:33:18 +00:00
}
code {
font-family: $monospace-font;
font-size: $code-font-size;
line-height: $code-line-height;
display: inline-block;
}
2018-02-06 13:33:18 +00:00
}
.line-numbers {
padding: 10px 10px 10px 0;
2018-02-06 13:33:18 +00:00
text-align: right;
float: left;
.diff-line-num {
2018-07-24 21:17:49 +00:00
font-family: $monospace-font;
2018-02-06 13:33:18 +00:00
display: block;
2018-07-24 21:17:49 +00:00
font-size: $code-font-size;
line-height: $code-line-height;
2018-02-06 13:33:18 +00:00
white-space: nowrap;
color: $black-transparent;
min-width: 30px;
}
.diff-line-num:hover {
color: $almost-black;
cursor: pointer;
}
}
}
.file-actions {
flex-shrink: 0;
}
2018-02-06 13:33:18 +00:00
.file-title-flex-parent {
display: flex;
align-items: flex-start;
2018-02-06 13:33:18 +00:00
justify-content: space-between;
background-color: $gray-light;
border: $border-style;
border-bottom: 0;
padding: $gl-padding;
2018-02-06 13:33:18 +00:00
margin: 0;
border-radius: $border-radius-default $border-radius-default 0 0;
.file-header-content {
max-width: 75%;
align-self: center;
2018-02-06 13:33:18 +00:00
.file-title-name {
font-weight: $gl-font-weight-bold;
}
2018-02-21 14:09:33 +00:00
.gitlab-embedded-snippets-title {
text-decoration: none;
color: $gl-text-color;
word-break: break-word;
2018-02-21 17:05:10 +00:00
&:hover {
2018-02-21 14:09:33 +00:00
text-decoration: underline;
}
}
.gitlab-logo-wrapper {
padding-left: $gl-padding-8;
position: relative;
top: 2px;
2018-02-06 13:33:18 +00:00
.gitlab-logo {
height: 18px;
2018-02-06 13:33:18 +00:00
}
}
}
2018-03-03 09:23:42 +00:00
img,
.gl-snippet-icon {
2018-02-06 13:33:18 +00:00
display: inline-block;
vertical-align: text-bottom;
2018-02-06 13:33:18 +00:00
}
}
.btn-group {
button.btn,
2018-02-06 13:33:18 +00:00
a.btn {
background-color: $white;
2018-02-06 13:33:18 +00:00
text-decoration: none;
padding: 8px 9px;
2018-02-06 13:33:18 +00:00
border: $border-style;
border-right: 0;
&:hover {
background-color: $white-normal;
border-color: $border-white-normal;
text-decoration: none;
}
&:first-child {
border-radius: $border-radius-default 0 0 $border-radius-default;
2018-02-06 13:33:18 +00:00
}
&:last-child {
border-radius: 0 $border-radius-default $border-radius-default 0;
2018-02-06 13:33:18 +00:00
border-right: $border-style;
}
}
button.btn {
padding: 9px 9px 8px;
}
2018-02-06 13:33:18 +00:00
}
}