Skip to content

Commit

Permalink
colibris: apply skin variants to set_title_on_pad
Browse files Browse the repository at this point in the history
  • Loading branch information
seballot authored and muxator committed May 3, 2020
1 parent 15af63b commit 01c59b3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/static/skins/colibris/pad.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
@import url("src/plugins/brightcolorpicker.css");
@import url("src/plugins/font_color.css");
@import url("src/plugins/tables2.css");
@import url("src/plugins/set_title_on_pad.css");
@import url("src/plugins/author_hover.css");
@import url("src/plugins/comments.css");

Expand Down
8 changes: 4 additions & 4 deletions src/static/skins/colibris/src/pad-variants.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* =========================== */
/* === Super Light Toolbar === */
/* =========================== */
.super-light-toolbar .toolbar, .super-light-toolbar .popup-content {
.super-light-toolbar .toolbar, .super-light-toolbar .popup-content, #pad_title {
--text-color: var(--super-dark-color);
--text-soft-color: var(--dark-color);
--border-color: #e4e6e9;
Expand All @@ -11,7 +11,7 @@
/* ===================== */
/* === Light Toolbar === */
/* ===================== */
.light-toolbar .toolbar, .light-toolbar .popup-content {
.light-toolbar .toolbar, .light-toolbar .popup-content, #pad_title {
--text-color: var(--super-dark-color);
--text-soft-color: var(--dark-color);
--border-color: var(--middle-color);
Expand All @@ -21,7 +21,7 @@
/* ========================== */
/* === Super Dark Toolbar === */
/* ========================== */
.super-dark-toolbar .toolbar, .super-dark-toolbar .popup-content {
.super-dark-toolbar .toolbar, .super-dark-toolbar .popup-content, #pad_title {
--text-color: var(--super-light-color);
--text-soft-color: var(--light-color);
--border-color: var(--dark-color);
Expand All @@ -35,7 +35,7 @@
/* ==================== */
/* === Dark Toolbar === */
/* ==================== */
.dark-toolbar .toolbar, .dark-toolbar .popup-content {
.dark-toolbar .toolbar, .dark-toolbar .popup-content, #pad_title {
--text-color: var(--super-light-color);
--text-soft-color: var(--light-color);
--border-color: var(--super-dark-color);
Expand Down
7 changes: 7 additions & 0 deletions src/static/skins/colibris/src/plugins/set_title_on_pad.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#pad_title {
border-bottom: 1px solid var(--border-color) !important;
background-color: var(--bg-color) !important;
}
#edit_title {
color: var(--text-soft-color);
}

0 comments on commit 01c59b3

Please sign in to comment.