diff --git a/static/css/theme-blue.css b/static/css/theme-blue.css
index 9955541b47..865ae919e4 100644
--- a/static/css/theme-blue.css
+++ b/static/css/theme-blue.css
@@ -5,6 +5,7 @@
--MAIN-TITLES-TEXT-color: #5e5e5e; /* Color of titles h2-h3-h4-h5 */
--MAIN-LINK-color:#1C90F3; /* Color of links */
--MAIN-LINK-HOVER-color:#167ad0; /* Color of hovered links */
+ --MAIN-ANCHOR-color: #1C90F3; /* color of anchors on titles */
--MENU-HEADER-BG-color:#1C90F3; /* Background color of menu header */
--MENU-HEADER-BORDER-color:#33a1ff; /*Color of menu header border */
@@ -29,6 +30,11 @@ body {
color: var(--MAIN-TEXT-color) !important;
}
+textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus {
+ border-color: none;
+ box-shadow: none;
+}
+
h2, h3, h4, h5 {
color: var(--MAIN-TITLES-TEXT-color) !important;
}
@@ -37,6 +43,10 @@ a {
color: var(--MAIN-LINK-color);
}
+.anchor {
+ color: var(--MAIN-ANCHOR-color);
+}
+
a:hover {
color: var(--MAIN-LINK-HOVER-color);
}
diff --git a/static/css/theme-green.css b/static/css/theme-green.css
index 6e05424ded..56bb3bf570 100644
--- a/static/css/theme-green.css
+++ b/static/css/theme-green.css
@@ -5,17 +5,22 @@
--MAIN-TITLES-TEXT-color: #5e5e5e; /* Color of titles h2-h3-h4-h5 */
--MAIN-LINK-color:#599a3e; /* Color of links */
--MAIN-LINK-HOVER-color:#3f6d2c; /* Color of hovered links */
+ --MAIN-ANCHOR-color: #599a3e; /* color of anchors on titles */
+
--MENU-HEADER-BG-color:#74b559; /* Background color of menu header */
--MENU-HEADER-BORDER-color:#9cd484; /*Color of menu header border */
+
--MENU-SEARCH-BG-color:#599a3e; /* Search field background color (by default borders + icons) */
--MENU-SEARCH-BOX-color: #84c767; /* Override search field border color */
--MENU-SEARCH-BOX-ICONS-color: #c7f7c4; /* Override search field icons color */
+
--MENU-SECTIONS-ACTIVE-BG-color:#1b211c; /* Background color of the active section and its childs */
--MENU-SECTIONS-BG-color:#222723; /* Background color of other sections */
--MENU-SECTIONS-LINK-color: #ccc; /* Color of links in menu */
--MENU-SECTIONS-LINK-HOVER-color: #e6e6e6; /* Color of links in menu, when hovered */
--MENU-SECTION-ACTIVE-CATEGORY-color: #777; /* Color of active category text */
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: #fff; /* Color of background for the active category (only) */
+
--MENU-VISITED-color: #599a3e; /* Color of 'page visited' icons in menu */
--MENU-SECTION-HR-color: #18211c; /* Color of
separator in menu */
@@ -25,6 +30,11 @@ body {
color: var(--MAIN-TEXT-color) !important;
}
+textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus {
+ border-color: none;
+ box-shadow: none;
+}
+
h2, h3, h4, h5 {
color: var(--MAIN-TITLES-TEXT-color) !important;
}
@@ -33,6 +43,10 @@ a {
color: var(--MAIN-LINK-color);
}
+.anchor {
+ color: var(--MAIN-ANCHOR-color);
+}
+
a:hover {
color: var(--MAIN-LINK-HOVER-color);
}
diff --git a/static/css/theme-red.css b/static/css/theme-red.css
index 7c0d30e354..5777deb1ff 100644
--- a/static/css/theme-red.css
+++ b/static/css/theme-red.css
@@ -5,17 +5,22 @@
--MAIN-TITLES-TEXT-color: #5e5e5e; /* Color of titles h2-h3-h4-h5 */
--MAIN-LINK-color:#f31c1c; /* Color of links */
--MAIN-LINK-HOVER-color:#d01616; /* Color of hovered links */
+ --MAIN-ANCHOR-color: #f31c1c; /* color of anchors on titles */
+
--MENU-HEADER-BG-color:#dc1010; /* Background color of menu header */
--MENU-HEADER-BORDER-color:#e23131; /*Color of menu header border */
+
--MENU-SEARCH-BG-color:#b90000; /* Search field background color (by default borders + icons) */
--MENU-SEARCH-BOX-color: #ef2020; /* Override search field border color */
--MENU-SEARCH-BOX-ICONS-color: #fda1a1; /* Override search field icons color */
+
--MENU-SECTIONS-ACTIVE-BG-color:#2b2020; /* Background color of the active section and its childs */
--MENU-SECTIONS-BG-color:#312525; /* Background color of other sections */
--MENU-SECTIONS-LINK-color: #ccc; /* Color of links in menu */
--MENU-SECTIONS-LINK-HOVER-color: #e6e6e6; /* Color of links in menu, when hovered */
--MENU-SECTION-ACTIVE-CATEGORY-color: #777; /* Color of active category text */
--MENU-SECTION-ACTIVE-CATEGORY-BG-color: #fff; /* Color of background for the active category (only) */
+
--MENU-VISITED-color: #ff3333; /* Color of 'page visited' icons in menu */
--MENU-SECTION-HR-color: #2b2020; /* Color of
separator in menu */
@@ -25,6 +30,11 @@ body {
color: var(--MAIN-TEXT-color) !important;
}
+textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus {
+ border-color: none;
+ box-shadow: none;
+}
+
h2, h3, h4, h5 {
color: var(--MAIN-TITLES-TEXT-color) !important;
}
@@ -33,6 +43,10 @@ a {
color: var(--MAIN-LINK-color);
}
+.anchor {
+ color: var(--MAIN-ANCHOR-color);
+}
+
a:hover {
color: var(--MAIN-LINK-HOVER-color);
}