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

_forms.less « general « stylesheets « Morpheus « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cf5727b67b63031015aae98ad0a8a01d623885d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.form-group {
  margin-bottom: 20px;
  margin-top: 20px;

  label.siteSelectorLabel {
    position: relative;
    top: -7px;
    left: 0;
    font-size: 13px;
  }

  label.fieldRadioTitle {
    padding-bottom: 10px;
    display: inline-block;
    color: #9e9e9e;
    font-size: 13px;

  }

  > h3 {
    padding-bottom: 16px !important;
  }

  .form-help {
    background-color: #eff0f1;
    color: #76838f;
    font-size: 13px;
    padding: 20px 20px 20px 20px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 2px;
    font-size: 14px;
    position: relative;
  }

  label {
    color: #76838f;

    .form-description {
      font-size: 90%;
      font-style: italic;
      &:before {
        content: '(';
      }
      &:after {
        content: ')';
      }
    }
  }

  .inline-help .inline-help-node {
    display: block;
  }

}


.inline-help-node {
  display: none;
}

.input-field .prefix {
  color: @theme-color-text-lighter;
}

input.browser-default {
  box-sizing: border-box;
  margin: 0;
  height: auto;
}

.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;
}