gitlab-org--gitlab-foss/app/assets/stylesheets/pages/editor.scss
connorshea e03d0b2892 Follow the CSS Style Guide rules for HEX colors.
Use lowercase letters and shorthand values for HEX colors where
possible.

Discussed in #14299.
2016-03-15 13:56:28 -06:00

56 lines
849 B
SCSS

.file-editor {
#editor{
border: none;
@include border-radius(0);
height: 500px;
margin: 0;
padding: 0;
position: relative;
width: 100%;
}
.ace_gutter-cell {
background-color: $background-color;
}
.cancel-btn {
color: #b94a48;
&:hover {
color: #b94a48;
}
}
.file-title {
@extend .monospace;
line-height: 42px;
padding-top: 7px;
padding-bottom: 7px;
}
.editor-ref {
background: $background-color;
padding-right: $gl-padding;
border-right: 1px solid $border-color;
display: block;
float: left;
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;
}
}