2014-09-02 18:07:02 +05:30
|
|
|
.file-editor {
|
2017-08-17 22:00:37 +05:30
|
|
|
.nav-links {
|
|
|
|
border-top: 1px solid $border-color;
|
|
|
|
border-right: 1px solid $border-color;
|
|
|
|
border-left: 1px solid $border-color;
|
2018-03-17 18:26:18 +05:30
|
|
|
border-bottom: 0;
|
|
|
|
border-radius: $border-radius-small $border-radius-small 0 0;
|
2017-08-17 22:00:37 +05:30
|
|
|
background: $gray-normal;
|
|
|
|
}
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
#editor {
|
2018-03-17 18:26:18 +05:30
|
|
|
border: 0;
|
2016-11-03 12:29:30 +05:30
|
|
|
border-radius: 0;
|
2014-09-02 18:07:02 +05:30
|
|
|
height: 500px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
.ace_gutter-cell {
|
2017-08-17 22:00:37 +05:30
|
|
|
background-color: $gray-light;
|
2015-09-25 12:07:36 +05:30
|
|
|
}
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
.cancel-btn {
|
2018-11-20 20:47:30 +05:30
|
|
|
color: $red-600;
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
&:hover {
|
2018-11-20 20:47:30 +05:30
|
|
|
color: $red-600;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
|
|
|
}
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
.file-title {
|
|
|
|
@extend .monospace;
|
2016-06-02 11:05:42 +05:30
|
|
|
line-height: 35px;
|
2015-12-23 02:04:40 +05:30
|
|
|
padding-top: 7px;
|
|
|
|
padding-bottom: 7px;
|
2018-11-20 20:47:30 +05:30
|
|
|
display: flex;
|
2015-04-26 12:48:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.editor-ref {
|
2017-08-17 22:00:37 +05:30
|
|
|
background: $gray-light;
|
2015-12-23 02:04:40 +05:30
|
|
|
padding-right: $gl-padding;
|
2015-09-25 12:07:36 +05:30
|
|
|
border-right: 1px solid $border-color;
|
2015-12-23 02:04:40 +05:30
|
|
|
display: block;
|
|
|
|
float: left;
|
2015-04-26 12:48:37 +05:30
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
.new-file-name,
|
|
|
|
.new-file-path {
|
2015-12-23 02:04:40 +05:30
|
|
|
display: inline-block;
|
2019-12-21 20:55:43 +05:30
|
|
|
max-width: 250px;
|
2015-12-23 02:04:40 +05:30
|
|
|
float: left;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
@media(max-width: map-get($grid-breakpoints, lg)-1) {
|
2017-08-17 22:00:37 +05:30
|
|
|
width: 180px;
|
|
|
|
}
|
2019-12-21 20:55:43 +05:30
|
|
|
|
|
|
|
@media (max-width: 1360px) {
|
|
|
|
width: auto;
|
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.file-buttons {
|
2018-11-20 20:47:30 +05:30
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
justify-content: flex-end;
|
2015-09-25 12:07:36 +05:30
|
|
|
}
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
.select2 {
|
|
|
|
float: right;
|
2015-04-26 12:48:37 +05:30
|
|
|
}
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
.encoding-selector,
|
2017-08-17 22:00:37 +05:30
|
|
|
.soft-wrap-toggle {
|
2016-06-02 11:05:42 +05:30
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2018-11-18 11:00:15 +05:30
|
|
|
font-family: $regular-font;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
.soft-wrap-toggle {
|
|
|
|
margin: 0 $btn-side-margin;
|
|
|
|
|
|
|
|
.soft-wrap {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-wrap {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.soft-wrap-active {
|
|
|
|
.soft-wrap {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-wrap {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
@include media-breakpoint-down(md) {
|
2017-08-17 22:00:37 +05:30
|
|
|
.file-editor {
|
|
|
|
.file-title {
|
2018-11-20 20:47:30 +05:30
|
|
|
display: block;
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
.new-file-name,
|
|
|
|
.new-file-path {
|
2017-08-17 22:00:37 +05:30
|
|
|
max-width: none;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file-buttons {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
.soft-wrap-toggle {
|
|
|
|
width: 100%;
|
|
|
|
margin: 3px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.encoding-selector {
|
|
|
|
display: block;
|
|
|
|
margin: 3px 0;
|
|
|
|
|
|
|
|
button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
@media(max-width: map-get($grid-breakpoints, md)-1) {
|
|
|
|
clear: both;
|
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
2018-11-20 20:47:30 +05:30
|
|
|
|
|
|
|
.editor-ref {
|
|
|
|
max-width: 250px;
|
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.blob-new-page-title,
|
|
|
|
.blob-edit-page-title {
|
|
|
|
margin: 19px 0 21px;
|
|
|
|
vertical-align: top;
|
|
|
|
display: inline-block;
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
@media(max-width: map-get($grid-breakpoints, lg)-1) {
|
2017-08-17 22:00:37 +05:30
|
|
|
display: block;
|
|
|
|
margin: 19px 0 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.template-selectors-menu {
|
2019-12-21 20:55:43 +05:30
|
|
|
display: flex;
|
2017-08-17 22:00:37 +05:30
|
|
|
vertical-align: top;
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
@media(max-width: map-get($grid-breakpoints, lg)-1) {
|
2017-08-17 22:00:37 +05:30
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin: 5px 0;
|
|
|
|
padding: 0;
|
2018-03-17 18:26:18 +05:30
|
|
|
border-left: 0;
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.template-selector-dropdowns-wrap {
|
2020-01-01 13:55:28 +05:30
|
|
|
display: flex;
|
2019-07-07 11:18:12 +05:30
|
|
|
vertical-align: top;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
@media(max-width: map-get($grid-breakpoints, lg)-1) {
|
2017-08-17 22:00:37 +05:30
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0 0 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.license-selector,
|
|
|
|
.gitignore-selector,
|
|
|
|
.gitlab-ci-yml-selector,
|
|
|
|
.dockerfile-selector,
|
|
|
|
.template-type-selector {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
font-family: $regular_font;
|
2020-01-01 13:55:28 +05:30
|
|
|
margin: 0 8px 0 0;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
@media(max-width: map-get($grid-breakpoints, lg)-1) {
|
2017-08-17 22:00:37 +05:30
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.dropdown {
|
|
|
|
line-height: 21px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu-toggle {
|
2019-12-21 20:55:43 +05:30
|
|
|
width: 200px;
|
2016-06-02 11:05:42 +05:30
|
|
|
vertical-align: top;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
@media (max-width: map-get($grid-breakpoints, xl)-1) {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width: map-get($grid-breakpoints, lg)-1) {
|
2017-08-17 22:00:37 +05:30
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
2016-06-22 15:30:34 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
.editor-title-row {
|
|
|
|
margin-bottom: 20px;
|
2014-09-02 18:07:02 +05:30
|
|
|
}
|
2020-04-22 19:07:51 +05:30
|
|
|
|
|
|
|
.popover.suggest-gitlab-ci-yml {
|
|
|
|
z-index: $header-zindex - 1;
|
|
|
|
}
|