1
0
Fork 0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2025-04-08 06:50:11 +00:00

Add old stylesheet for files texteditor

This commit is contained in:
Magnus Walbeck 2022-01-30 01:15:59 +01:00
parent 2d5ec16f07
commit 76d679f022
Signed by: mwalbeck
GPG key ID: CCB78CFF3F950769
2 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,69 @@
/* Text Editor -------------------------------------------------------------- */
#editor_container {
background-color: $decoration-normal;
}
#editor_controls {
background-color: $background-normal;
small {
&.filename {
color: $foreground-normal;
}
&.saving-message {
color: $foreground-inactive;
}
}
#editor_close {
opacity: 1;
&:hover {
background-color: $background-active-hover;
}
&:active,
&:focus {
background-color: $background-active;
}
}
}
#editor.ace_editor,
#sidebar_editor.ace_editor {
background-color: $background-dark !important;
color: $foreground-normal !important;
.ace_gutter {
color: $foreground-normal !important;
opacity: 1 !important;
.ace_gutter-cell {
opacity: 0.7;
}
}
.ace_gutter-active-line {
background-color: $background-active-hover !important;
}
.ace_marker-layer {
.ace_active-line {
background: $background-dark !important;
}
.ace_selection {
background: $background-active-hover !important;
}
}
.ace_cursor {
color: $foreground-normal !important;
}
}
#sidebar_editor.ace_editor .ace_cursor {
display: none;
}

View file

@ -49,6 +49,7 @@
@import "apps/official/contacts";
@import "apps/official/deck";
@import "apps/official/external-sites";
@import "apps/official/files-texteditor";
@import "apps/official/forms";
@import "apps/official/groupfolders";
@import "apps/official/ldap";