mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
[ticket/12542] Use extended CSS for all browsers
PHPBB3-12542
This commit is contained in:
parent
c018b3bbc7
commit
818df0ec68
2 changed files with 21 additions and 1 deletions
|
@ -978,10 +978,18 @@ fieldset.quick-login input.inputbox {
|
|||
}
|
||||
|
||||
#message-box textarea.drag-n-drop {
|
||||
-webkit-outline-color: rgba(102, 102, 102, 0.5);
|
||||
-moz-outline-color: rgba(102, 102, 102, 0.5);
|
||||
-ms-outline-color: rgba(102, 102, 102, 0.5);
|
||||
-o-outline-color: rgba(102, 102, 102, 0.5);
|
||||
outline-color: rgba(102, 102, 102, 0.5);
|
||||
}
|
||||
|
||||
#message-box textarea.drag-n-drop-highlight {
|
||||
-webkit-outline-color: rgba(17, 163, 234, 0.5);
|
||||
-moz-outline-color: rgba(17, 163, 234, 0.5);
|
||||
-ms-outline-color: rgba(17, 163, 234, 0.5);
|
||||
-o-outline-color: rgba(17, 163, 234, 0.5);
|
||||
outline-color: rgba(17, 163, 234, 0.5);
|
||||
}
|
||||
|
||||
|
|
|
@ -243,9 +243,21 @@ fieldset.submit-buttons input {
|
|||
max-width: 100%;
|
||||
font-size: 1.2em;
|
||||
resize: vertical;
|
||||
-webkit-outline: 3px dashed transparent;
|
||||
-moz-outline: 3px dashed transparent;
|
||||
-ms-outline: 3px dashed transparent;
|
||||
-o-outline: 3px dashed transparent;
|
||||
outline: 3px dashed transparent;
|
||||
-webkit-outline-offset: -4px;
|
||||
-moz-outline-offset: -4px;
|
||||
-ms-outline-offset: -4px;
|
||||
-o-outline-offset: -4px;
|
||||
outline-offset: -4px;
|
||||
transition: .5s;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-ms-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
|
||||
/* Emoticons panel */
|
||||
|
|
Loading…
Add table
Reference in a new issue