mirror of
https://github.com/nextcloud/passman.git
synced 2025-02-24 23:44:01 +08:00
Fix for input checkboxes
This commit is contained in:
parent
d6413f32d6
commit
f665b6057a
4 changed files with 9 additions and 1 deletions
|
@ -940,4 +940,7 @@
|
|||
.clearfix {
|
||||
clear: both; }
|
||||
|
||||
input[type="checkbox"] {
|
||||
min-height: inherit; }
|
||||
|
||||
/*# sourceMappingURL=app.css.map */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -102,4 +102,8 @@
|
|||
}
|
||||
.clearfix{
|
||||
clear: both;
|
||||
}
|
||||
//Fix NC fucking up our style
|
||||
input[type="checkbox"]{
|
||||
min-height: inherit;
|
||||
}
|
|
@ -75,6 +75,7 @@
|
|||
color: #8e8e8e;
|
||||
}
|
||||
}
|
||||
|
||||
input[type="password"], input[type="text"]{
|
||||
width: 100%;
|
||||
@include border-radius(5px);
|
||||
|
|
Loading…
Reference in a new issue