Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Morpheus/stylesheets/general/_forms.less')
-rw-r--r--plugins/Morpheus/stylesheets/general/_forms.less33
1 files changed, 30 insertions, 3 deletions
diff --git a/plugins/Morpheus/stylesheets/general/_forms.less b/plugins/Morpheus/stylesheets/general/_forms.less
index cc56ae93b0..4cf5727b67 100644
--- a/plugins/Morpheus/stylesheets/general/_forms.less
+++ b/plugins/Morpheus/stylesheets/general/_forms.less
@@ -22,8 +22,8 @@
}
.form-help {
- color: #838383;
- background-color: #F5F5F5;
+ background-color: #eff0f1;
+ color: #76838f;
font-size: 13px;
padding: 20px 20px 20px 20px;
border: 1px solid rgba(0, 0, 0, 0);
@@ -33,6 +33,8 @@
}
label {
+ color: #76838f;
+
.form-description {
font-size: 90%;
font-style: italic;
@@ -64,4 +66,29 @@ input.browser-default {
box-sizing: border-box;
margin: 0;
height: auto;
-} \ No newline at end of file
+}
+
+.progress .determinate {
+ background-color: @theme-color-brand !important;
+}
+
+[type="checkbox"]:checked+label:before {
+ border-right-color: @theme-color-brand;
+ border-bottom-color: @theme-color-brand;
+}
+nav.blue-grey.darken-3 {
+ background-color: @theme-color-header-background !important;
+}
+[type="radio"]:checked+label:after, [type="radio"].with-gap:checked+label:after {
+ background-color: @theme-color-brand;
+ border-color: @theme-color-brand;
+}
+
+input:not([type]):focus:not([readonly]), input[type=text]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=url]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=date]:focus:not([readonly]), input[type=datetime]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=search]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
+ border-bottom-color: @theme-color-brand;
+ box-shadow: 0 1px 0 0 @theme-color-brand;
+}
+
+input:not([type]):focus:not([readonly])+label, input[type=text]:focus:not([readonly])+label, input[type=password]:focus:not([readonly])+label, input[type=email]:focus:not([readonly])+label, input[type=url]:focus:not([readonly])+label, input[type=time]:focus:not([readonly])+label, input[type=date]:focus:not([readonly])+label, input[type=datetime]:focus:not([readonly])+label, input[type=datetime-local]:focus:not([readonly])+label, input[type=tel]:focus:not([readonly])+label, input[type=number]:focus:not([readonly])+label, input[type=search]:focus:not([readonly])+label, textarea.materialize-textarea:focus:not([readonly])+label {
+ color: @theme-color-brand;
+}