Better styling of editor and updating file draft name on change
This commit is contained in:
parent
f25472aa47
commit
c1f5f82329
@ -31,7 +31,10 @@
|
|||||||
{
|
{
|
||||||
<div class="field is-grouped">
|
<div class="field is-grouped">
|
||||||
<div class="control is-expanded borderRBig neoInput has-text-centered">
|
<div class="control is-expanded borderRBig neoInput has-text-centered">
|
||||||
<input class="input is-5 is-rounded is-small neoInput" type="text" placeholder="Search..." value="@SelectedFile.Name" disabled>
|
<input class="input is-5 is-rounded is-small neoInput"
|
||||||
|
type="text" placeholder="Search..."
|
||||||
|
value="@SelectedFile.Name" disabled="@(SelectedFile.CanBeDeleted ? null : "disabled")"
|
||||||
|
@onchange="e => SelectedFile.DraftName = e.Value.ToString()">
|
||||||
</div>
|
</div>
|
||||||
<div class="control">
|
<div class="control">
|
||||||
<button class="button is-small is-rounded neoBtn" @onclick="OnFileCloseClick">
|
<button class="button is-small is-rounded neoBtn" @onclick="OnFileCloseClick">
|
||||||
@ -50,19 +53,19 @@
|
|||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="files neomorphInsetSmall borderR">
|
<div class="files neomorphInsetXSmall borderR">
|
||||||
<div class="filesList">
|
<div class="filesList">
|
||||||
@foreach (var file in Files)
|
@foreach (var file in Files)
|
||||||
{
|
{
|
||||||
<div @onclick="e => OnFileClick(e,file)" @key="file" class="confFile borderRSmall isFinger neoFile @file.IsVisible @file.IsSelected">
|
<div @onclick="e => OnFileClick(e,file)" @key="file" class="confFile borderRSmall isFinger neoFile @file.IsVisible @file.IsSelected">
|
||||||
<p class="is-7">@file.Folder</p>
|
<p class="is-7">@file.Folder</p>
|
||||||
<p class="has-text-weight-bold @(file.CanBeDeleted ? null : "has-text-danger")">@file.Name</p>
|
<p class="has-text-weight-bold ellipsis @(file.CanBeDeleted ? null : "has-text-danger")">@file.Name</p>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="codeEditor neomorphInsetSmall borderR">
|
<div class="codeEditor neomorphXSmall borderR">
|
||||||
<pre id="editor" class="borderR @(IsAnyFileSelected ? string.Empty : "is-hidden")">
|
<pre id="editor" class="borderR @(IsAnyFileSelected ? string.Empty : "is-hidden")">
|
||||||
</pre>
|
</pre>
|
||||||
<div class="stripe borderR @(IsAnyFileSelected ? "is-hidden" : string.Empty)">
|
<div class="stripe borderR @(IsAnyFileSelected ? "is-hidden" : string.Empty)">
|
||||||
|
@ -26,7 +26,6 @@ html {
|
|||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
margin: 3%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.select:not(.is-multiple):not(.is-loading)::after {
|
.select:not(.is-multiple):not(.is-loading)::after {
|
||||||
@ -38,9 +37,18 @@ html {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ace-solarized-light {
|
.ace-solarized-light {
|
||||||
background: $background-light;
|
background: $background;
|
||||||
|
|
||||||
& .ace_gutter {
|
& .ace_gutter {
|
||||||
background: $background-dark;
|
background: $background-dark;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
& .ace_gutter-active-line {
|
||||||
|
border-radius: 50px 0 0 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
& .ace_marker-layer .ace_active-line {
|
||||||
|
border-radius: 0 50px 50px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-items: center;
|
justify-items: center;
|
||||||
width: 93%;
|
width: 100%;
|
||||||
height: 90%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&_inner {
|
&_inner {
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
.filesWithEditor {
|
.filesWithEditor {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-areas: "filterFiles fileTitle" "files codeEditor" "filesActions editorActions";
|
grid-template-areas: "filterFiles fileTitle" "files codeEditor" "filesActions editorActions";
|
||||||
grid-gap: 20px;
|
grid-gap: 25px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
min-height: 10%;
|
min-height: 10%;
|
||||||
@ -37,7 +37,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
& .fileTitle {
|
& .fileTitle {
|
||||||
grid-area: fileTitle
|
grid-area: fileTitle;
|
||||||
|
|
||||||
|
& .field, & .control {
|
||||||
|
height: 100%
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
& .files {
|
& .files {
|
||||||
|
@ -43,6 +43,11 @@
|
|||||||
box-shadow: -6px -6px 12px rgba($light-shadow, .5), 6px 6px 12px rgba($dark-shadow, .5);
|
box-shadow: -6px -6px 12px rgba($light-shadow, .5), 6px 6px 12px rgba($dark-shadow, .5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&XSmall {
|
||||||
|
/*box-shadow: 0px 0px 3px 3px rgba($background, 1), -6px -6px 12px rgba($light-shadow, 1), 6px 6px 12px rgba($dark-shadow, 1);*/
|
||||||
|
box-shadow: -3px -3px 6px rgba($light-shadow, .5), 3px 3px 6px rgba($dark-shadow, .5);
|
||||||
|
}
|
||||||
|
|
||||||
&Bottom {
|
&Bottom {
|
||||||
filter: drop-shadow(8px 8px 14px rgba($dark-shadow, 1));
|
filter: drop-shadow(8px 8px 14px rgba($dark-shadow, 1));
|
||||||
}
|
}
|
||||||
@ -53,6 +58,11 @@
|
|||||||
&Small {
|
&Small {
|
||||||
box-shadow: inset 6px 6px 12px rgba($dark-shadow, .5), inset -6px -6px 12px rgba($light-shadow, .5);
|
box-shadow: inset 6px 6px 12px rgba($dark-shadow, .5), inset -6px -6px 12px rgba($light-shadow, .5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&XSmall {
|
||||||
|
/*box-shadow: 0px 0px 3px 3px rgba($background, 1), -6px -6px 12px rgba($light-shadow, 1), 6px 6px 12px rgba($dark-shadow, 1);*/
|
||||||
|
box-shadow: inset 3px 3px 6px rgba($dark-shadow, .5), inset -3px -3px 6px rgba($light-shadow, .5);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -132,3 +142,9 @@
|
|||||||
.sameMarginBottom {
|
.sameMarginBottom {
|
||||||
margin-bottom: 1rem !important
|
margin-bottom: 1rem !important
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ellipsis {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
@ -63,12 +63,18 @@ html {
|
|||||||
.neomorphSmall {
|
.neomorphSmall {
|
||||||
/*box-shadow: 0px 0px 3px 3px rgba($background, 1), -6px -6px 12px rgba($light-shadow, 1), 6px 6px 12px rgba($dark-shadow, 1);*/
|
/*box-shadow: 0px 0px 3px 3px rgba($background, 1), -6px -6px 12px rgba($light-shadow, 1), 6px 6px 12px rgba($dark-shadow, 1);*/
|
||||||
box-shadow: -6px -6px 12px rgba(251, 238, 208, 0.5), 6px 6px 12px rgba(241, 185, 65, 0.5); }
|
box-shadow: -6px -6px 12px rgba(251, 238, 208, 0.5), 6px 6px 12px rgba(241, 185, 65, 0.5); }
|
||||||
|
.neomorphXSmall {
|
||||||
|
/*box-shadow: 0px 0px 3px 3px rgba($background, 1), -6px -6px 12px rgba($light-shadow, 1), 6px 6px 12px rgba($dark-shadow, 1);*/
|
||||||
|
box-shadow: -3px -3px 6px rgba(251, 238, 208, 0.5), 3px 3px 6px rgba(241, 185, 65, 0.5); }
|
||||||
.neomorphBottom {
|
.neomorphBottom {
|
||||||
filter: drop-shadow(8px 8px 14px #f1b941); }
|
filter: drop-shadow(8px 8px 14px #f1b941); }
|
||||||
.neomorphInset {
|
.neomorphInset {
|
||||||
box-shadow: inset 8px 8px 16px rgba(241, 185, 65, 0.5), inset -8px -8px 16px rgba(251, 238, 208, 0.5); }
|
box-shadow: inset 8px 8px 16px rgba(241, 185, 65, 0.5), inset -8px -8px 16px rgba(251, 238, 208, 0.5); }
|
||||||
.neomorphInsetSmall {
|
.neomorphInsetSmall {
|
||||||
box-shadow: inset 6px 6px 12px rgba(241, 185, 65, 0.5), inset -6px -6px 12px rgba(251, 238, 208, 0.5); }
|
box-shadow: inset 6px 6px 12px rgba(241, 185, 65, 0.5), inset -6px -6px 12px rgba(251, 238, 208, 0.5); }
|
||||||
|
.neomorphInsetXSmall {
|
||||||
|
/*box-shadow: 0px 0px 3px 3px rgba($background, 1), -6px -6px 12px rgba($light-shadow, 1), 6px 6px 12px rgba($dark-shadow, 1);*/
|
||||||
|
box-shadow: inset 3px 3px 6px rgba(241, 185, 65, 0.5), inset -3px -3px 6px rgba(251, 238, 208, 0.5); }
|
||||||
|
|
||||||
.neoBtn {
|
.neoBtn {
|
||||||
box-shadow: -3px -3px 6px rgba(251, 238, 208, 0.5), 3px 3px 6px rgba(241, 185, 65, 0.5);
|
box-shadow: -3px -3px 6px rgba(251, 238, 208, 0.5), 3px 3px 6px rgba(241, 185, 65, 0.5);
|
||||||
@ -122,6 +128,11 @@ html {
|
|||||||
.sameMarginBottom {
|
.sameMarginBottom {
|
||||||
margin-bottom: 1rem !important; }
|
margin-bottom: 1rem !important; }
|
||||||
|
|
||||||
|
.ellipsis {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis; }
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Ubuntu';
|
font-family: 'Ubuntu';
|
||||||
src: url(/fonts/ubuntu-light-webfont.woff2) format("woff2");
|
src: url(/fonts/ubuntu-light-webfont.woff2) format("woff2");
|
||||||
@ -145,8 +156,7 @@ html {
|
|||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0; }
|
||||||
margin: 3%; }
|
|
||||||
|
|
||||||
.select:not(.is-multiple):not(.is-loading)::after {
|
.select:not(.is-multiple):not(.is-loading)::after {
|
||||||
border-color: #f1b941; }
|
border-color: #f1b941; }
|
||||||
@ -155,9 +165,13 @@ html {
|
|||||||
border-color: #be860e; }
|
border-color: #be860e; }
|
||||||
|
|
||||||
.ace-solarized-light {
|
.ace-solarized-light {
|
||||||
background: #f7d794; }
|
background: #f6d287; }
|
||||||
.ace-solarized-light .ace_gutter {
|
.ace-solarized-light .ace_gutter {
|
||||||
background: #f5cd79; }
|
background: #f5cd79; }
|
||||||
|
.ace-solarized-light .ace_gutter-active-line {
|
||||||
|
border-radius: 50px 0 0 50px; }
|
||||||
|
.ace-solarized-light .ace_marker-layer .ace_active-line {
|
||||||
|
border-radius: 0 50px 50px 0; }
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--stripe-size: 200px;
|
--stripe-size: 200px;
|
||||||
@ -171,8 +185,8 @@ html {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-items: center;
|
justify-items: center;
|
||||||
width: 93%;
|
width: 100%;
|
||||||
height: 90%;
|
height: 100%;
|
||||||
overflow: hidden; }
|
overflow: hidden; }
|
||||||
.stripe_inner {
|
.stripe_inner {
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -238,7 +252,7 @@ html {
|
|||||||
.filesWithEditor {
|
.filesWithEditor {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-areas: "filterFiles fileTitle" "files codeEditor" "filesActions editorActions";
|
grid-template-areas: "filterFiles fileTitle" "files codeEditor" "filesActions editorActions";
|
||||||
grid-gap: 20px;
|
grid-gap: 25px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
min-height: 10%;
|
min-height: 10%;
|
||||||
@ -249,6 +263,8 @@ html {
|
|||||||
grid-area: filterFiles; }
|
grid-area: filterFiles; }
|
||||||
.filesWithEditor .fileTitle {
|
.filesWithEditor .fileTitle {
|
||||||
grid-area: fileTitle; }
|
grid-area: fileTitle; }
|
||||||
|
.filesWithEditor .fileTitle .field, .filesWithEditor .fileTitle .control {
|
||||||
|
height: 100%; }
|
||||||
.filesWithEditor .files {
|
.filesWithEditor .files {
|
||||||
grid-area: files;
|
grid-area: files;
|
||||||
display: block;
|
display: block;
|
||||||
|
2
Seenginx/wwwroot/css/main.min.css
vendored
2
Seenginx/wwwroot/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user