|
|
@@ -1602,31 +1602,83 @@
|
|
|
}
|
|
|
|
|
|
.password-meter {
|
|
|
- appearance: none;
|
|
|
- display: block;
|
|
|
- width: auto;
|
|
|
height: 3px;
|
|
|
- background-color: #e7e7e7;
|
|
|
+ overflow: hidden;
|
|
|
margin-left: 3px;
|
|
|
margin-right: 3px;
|
|
|
border-bottom-left-radius: 3px;
|
|
|
border-bottom-right-radius: 3px;
|
|
|
box-shadow: 0 1px 2px rgb(0 0 0 / 25%);
|
|
|
+}
|
|
|
+
|
|
|
+.password-meter-input {
|
|
|
+ appearance: none;
|
|
|
+ display: block;
|
|
|
+ size: 100%;
|
|
|
+ background: #e7e7e7;
|
|
|
|
|
|
&[value="1"] {
|
|
|
background: red;
|
|
|
+
|
|
|
+ &::-moz-meter-bar {
|
|
|
+ background: red;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-meter-bar {
|
|
|
+ background: red;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-meter-optimum-value {
|
|
|
+ background: red;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
&[value="2"] {
|
|
|
background: orange;
|
|
|
+
|
|
|
+ &::-moz-meter-bar {
|
|
|
+ background: orange;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-meter-bar {
|
|
|
+ background: orange;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-meter-optimum-value {
|
|
|
+ background: orange;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
&[value="3"] {
|
|
|
background: yellow;
|
|
|
+
|
|
|
+ &::-moz-meter-bar {
|
|
|
+ background: yellow;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-meter-bar {
|
|
|
+ background: yellow;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-meter-optimum-value {
|
|
|
+ background: yellow;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
&[value="4"] {
|
|
|
background: green;
|
|
|
+
|
|
|
+ &::-moz-meter-bar {
|
|
|
+ background: green;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-meter-bar {
|
|
|
+ background: green;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-meter-optimum-value {
|
|
|
+ background: green;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|