Fixed file template dropdown for the "New File" editor for smaller/zoomed screens
This commit is contained in:
parent
fd2a429f35
commit
4d37b24614
2 changed files with 54 additions and 1 deletions
|
@ -51,8 +51,16 @@
|
||||||
|
|
||||||
.new-file-name {
|
.new-file-name {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 450px;
|
max-width: 450px;
|
||||||
float: left;
|
float: left;
|
||||||
|
|
||||||
|
@media(max-width: $screen-md-max) {
|
||||||
|
width: 280px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media(max-width: $screen-sm-max) {
|
||||||
|
width: 180px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.file-buttons {
|
.file-buttons {
|
||||||
|
@ -114,3 +122,44 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media(max-width: $screen-xs-max){
|
||||||
|
.file-editor {
|
||||||
|
.file-title {
|
||||||
|
.pull-right {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.new-file-name {
|
||||||
|
margin-bottom: 0;
|
||||||
|
max-width: none;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.file-buttons {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 7px;
|
||||||
|
|
||||||
|
.soft-wrap-toggle {
|
||||||
|
margin: 7px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.encoding-selector,
|
||||||
|
.license-selector,
|
||||||
|
.gitignore-selector,
|
||||||
|
.gitlab-ci-yml-selector {
|
||||||
|
margin: 7px 0 0;
|
||||||
|
|
||||||
|
button {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Fixed file template dropdown for the "New File" editor for smaller/zoomed screens
|
||||||
|
merge_request:
|
||||||
|
author:
|
Loading…
Reference in a new issue