1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-25 07:37:46 +02:00
keeweb/app/styles/areas/_generator.scss

69 lines
1.5 KiB
SCSS
Raw Normal View History

2015-10-18 23:30:29 +02:00
.gen {
2019-08-16 23:05:39 +02:00
position: absolute;
@include common-dropdown;
padding: $base-spacing;
width: 11em;
&__length-range {
}
2019-08-16 23:05:39 +02:00
&__top-btn {
float: right;
cursor: pointer;
position: relative;
top: 2px;
& ~ .gen__top-btn {
margin-right: 0.5em;
}
color: var(--muted-color);
&:hover {
color: var(--text-color);
2019-08-16 23:05:39 +02:00
}
2016-02-23 07:43:43 +01:00
}
2019-08-16 23:05:39 +02:00
&__sel-tpl {
width: 100%;
height: 2em;
margin-top: $base-padding-v;
2015-10-19 23:24:32 +02:00
}
2019-08-16 23:05:39 +02:00
&__check {
width: 40%;
display: inline-block;
&:nth-child(even) {
margin-left: 15%;
}
}
2019-08-16 23:05:39 +02:00
&__result {
user-select: text;
2019-08-16 23:05:39 +02:00
font-family: $monospace-font-family;
margin-top: 6px;
margin-bottom: 3px;
height: 50px;
text-align: center;
white-space: pre-wrap;
word-break: break-all;
overflow: hidden;
&--long-pass {
font-size: 0.75em;
}
2019-08-06 01:22:29 +02:00
}
2019-08-16 23:05:39 +02:00
&__check-hide {
& + label.gen__check-hide-label:before {
@include fa-icon;
content: $fa-var-eye;
color: inherit;
}
&:checked + label.gen__check-hide-label:before {
content: $fa-var-eye-slash;
color: inherit;
}
}
&__btn-wrap {
text-align: center;
2019-08-06 01:22:29 +02:00
}
2015-10-20 19:17:15 +02:00
}
@-moz-document url-prefix() {
2019-08-16 23:05:39 +02:00
.gen__result {
white-space: pre-wrap;
word-break: break-all;
}
2015-10-18 23:30:29 +02:00
}