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

166 lines
2.5 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;
2016-09-09 12:59:36 -04:00
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 {
2016-12-12 17:26:21 -05:00
background-color: $gray-light;
}
2012-11-17 09:43:13 -05:00
.cancel-btn {
2016-11-30 08:25:25 -05:00
color: $editor-cancel-color;
2012-11-17 09:43:13 -05:00
&:hover {
2016-11-30 08:25:25 -05:00
color: $editor-cancel-color;
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 {
2016-12-12 17:26:21 -05:00
background: $gray-light;
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;
max-width: 450px;
float: left;
@media(max-width: $screen-md-max) {
width: 280px;
}
@media(max-width: $screen-sm-max) {
width: 180px;
}
}
2016-11-02 14:34:17 -04:00
.file-buttons {
font-size: 0;
}
.select2 {
float: right;
2015-01-26 23:57:42 -05:00
}
.encoding-selector,
.soft-wrap-toggle,
.license-selector,
2016-06-16 03:06:30 -04:00
.gitignore-selector,
2016-11-02 11:41:32 -04:00
.gitlab-ci-yml-selector,
.dockerfile-selector {
display: inline-block;
vertical-align: top;
font-family: $regular_font;
}
2016-09-27 17:08:05 -04:00
.soft-wrap-toggle {
margin: 0 $btn-side-margin;
2016-09-27 17:08:05 -04:00
.soft-wrap {
display: block;
}
2016-09-27 17:08:05 -04:00
.no-wrap {
display: none;
}
2016-09-27 17:08:05 -04:00
&.soft-wrap-active {
.soft-wrap {
display: none;
}
2016-09-27 17:08:05 -04:00
.no-wrap {
display: block;
}
}
}
.gitignore-selector,
.license-selector,
2016-11-02 11:41:32 -04:00
.gitlab-ci-yml-selector,
.dockerfile-selector {
.dropdown {
line-height: 21px;
}
2016-05-11 20:38:43 -04:00
.dropdown-menu-toggle {
vertical-align: top;
width: 220px;
}
}
2016-06-16 03:06:30 -04:00
.gitlab-ci-yml-selector {
.dropdown-menu-toggle {
width: 250px;
}
}
2012-10-09 13:11:49 -04:00
}
@media(max-width: $screen-xs-max){
.file-editor {
.file-title {
.pull-right {
height: auto;
}
}
.new-file-name {
max-width: none;
width: 100%;
2016-12-15 09:57:48 -05:00
margin-bottom: 3px;
}
.file-buttons {
display: block;
width: 100%;
2016-12-15 09:57:48 -05:00
margin-bottom: 10px;
.soft-wrap-toggle {
width: 100%;
2016-12-15 09:57:48 -05:00
margin: 3px 0;
}
.encoding-selector,
.license-selector,
.gitignore-selector,
.gitlab-ci-yml-selector {
display: block;
2016-12-15 09:57:48 -05:00
margin: 3px 0;
button {
width: 100%;
}
}
}
}
}