Tweaked CSS rules related to vendor stylesheets
This commit is contained in:
parent
42001d3edf
commit
cd146e0750
2 changed files with 12 additions and 2 deletions
1
TODO
1
TODO
|
@ -144,7 +144,6 @@ refactors:
|
||||||
individual presenters to use PresenterManager
|
individual presenters to use PresenterManager
|
||||||
|
|
||||||
miscellaneous:
|
miscellaneous:
|
||||||
- remove dotted borders from active buttons
|
|
||||||
- add customizable favicon
|
- add customizable favicon
|
||||||
- add add customizable logo
|
- add add customizable logo
|
||||||
- add log engine and log everything that should be logged
|
- add log engine and log everything that should be logged
|
||||||
|
|
|
@ -44,6 +44,10 @@ input[type=password] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
/* remove chrome yellow background for inputs with autocompletion */
|
||||||
|
input:-webkit-autofill {
|
||||||
|
-webkit-box-shadow: 0 0 0px 1000px #fafafa inset;
|
||||||
|
}
|
||||||
|
|
||||||
button,
|
button,
|
||||||
input[type=button] {
|
input[type=button] {
|
||||||
|
@ -74,10 +78,17 @@ input[type=button]:not(:disabled):hover.highlight {
|
||||||
background: #dfa;
|
background: #dfa;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea:focus, input:focus {
|
button:focus,
|
||||||
|
textarea:focus,
|
||||||
|
input:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
button::-moz-focus-inner,
|
||||||
|
input::-moz-focus-inner {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
.tag-input.focused,
|
.tag-input.focused,
|
||||||
|
button:focus,
|
||||||
textarea:focus,
|
textarea:focus,
|
||||||
input:not(.tag-real-input):focus {
|
input:not(.tag-real-input):focus {
|
||||||
box-shadow: 0 0 0 1px #5da inset;
|
box-shadow: 0 0 0 1px #5da inset;
|
||||||
|
|
Loading…
Reference in a new issue