gitlab-org--gitlab-foss/app/assets/stylesheets/pages/editor.scss

80 lines
1.2 KiB
SCSS
Raw Normal View History

2012-10-09 13:11:49 -04:00
.file-editor {
#editor {
2012-11-16 19:00:26 -05:00
border: none;
@include border-radius(0);
2012-10-09 13:11:49 -04:00
height: 500px;
2012-11-16 19:00:26 -05:00
margin: 0;
padding: 0;
2012-10-09 13:11:49 -04:00
position: relative;
2012-11-16 19:00:26 -05:00
width: 100%;
2012-10-09 13:11:49 -04:00
}
2012-11-17 09:43:13 -05:00
.ace_gutter-cell {
background-color: $background-color;
}
2012-11-17 09:43:13 -05:00
.cancel-btn {
color: #b94a48;
2012-11-17 09:43:13 -05:00
&:hover {
color: #b94a48;
2012-11-17 09:43:13 -05:00
}
}
2015-01-26 23:57:42 -05:00
.file-title {
@extend .monospace;
line-height: 35px;
padding-top: 7px;
padding-bottom: 7px;
.pull-right {
height: 20px;
}
2015-01-26 23:57:42 -05:00
}
.editor-ref {
background: $background-color;
padding-right: $gl-padding;
border-right: 1px solid $border-color;
display: block;
float: left;
2015-01-26 23:57:42 -05:00
margin-right: 10px;
}
.editor-file-name {
@extend .monospace;
float: left;
margin-right: 10px;
}
.new-file-name {
display: inline-block;
width: 450px;
float: left;
}
.select2 {
float: right;
2015-01-26 23:57:42 -05:00
}
.encoding-selector,
.license-selector,
.gitignore-selector {
display: inline-block;
vertical-align: top;
font-family: $regular_font;
}
.gitignore-selector, .license-selector {
.dropdown {
line-height: 21px;
}
2016-05-11 20:38:43 -04:00
.dropdown-menu-toggle {
vertical-align: top;
width: 220px;
}
}
2012-10-09 13:11:49 -04:00
}