Tweaked CSS rules related to vendor stylesheets

This commit is contained in:
Marcin Kurczewski 2014-09-20 19:02:50 +02:00
parent 42001d3edf
commit cd146e0750
2 changed files with 12 additions and 2 deletions

1
TODO
View file

@ -144,7 +144,6 @@ refactors:
individual presenters to use PresenterManager
miscellaneous:
- remove dotted borders from active buttons
- add customizable favicon
- add add customizable logo
- add log engine and log everything that should be logged

View file

@ -44,6 +44,10 @@ input[type=password] {
width: 100%;
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,
input[type=button] {
@ -74,10 +78,17 @@ input[type=button]:not(:disabled):hover.highlight {
background: #dfa;
}
textarea:focus, input:focus {
button:focus,
textarea:focus,
input:focus {
outline: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
}
.tag-input.focused,
button:focus,
textarea:focus,
input:not(.tag-real-input):focus {
box-shadow: 0 0 0 1px #5da inset;