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

57 lines
849 B
SCSS
Raw Normal View History

2012-10-09 17:11:49 +00:00
.file-editor {
#editor{
2012-11-17 00:00:26 +00:00
border: none;
@include border-radius(0);
2012-10-09 17:11:49 +00:00
height: 500px;
2012-11-17 00:00:26 +00:00
margin: 0;
padding: 0;
2012-10-09 17:11:49 +00:00
position: relative;
2012-11-17 00:00:26 +00:00
width: 100%;
2012-10-09 17:11:49 +00:00
}
2012-11-17 14:43:13 +00:00
.ace_gutter-cell {
background-color: $background-color;
}
2012-11-17 14:43:13 +00:00
.cancel-btn {
color: #B94A48;
&:hover {
color: #B94A48;
}
}
2015-01-27 04:57:42 +00:00
.file-title {
@extend .monospace;
line-height: 42px;
padding-top: 7px;
padding-bottom: 7px;
2015-01-27 04:57:42 +00:00
}
.editor-ref {
background: $background-color;
padding-right: $gl-padding;
border-right: 1px solid $border-color;
display: block;
float: left;
2015-01-27 04:57:42 +00: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-27 04:57:42 +00:00
}
2012-10-09 17:11:49 +00:00
}