mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-07 14:39:53 +02:00
Add a secondary button class for on field actions
Add a secondary button class for on field actions To use when actions are to be added to a specific field. Like for Copy/Paste Location and Rotation. These smaller buttons make easier to figure that those actions are tied to a specific field or group of field.
This commit is contained in:
parent
c1ee8801e0
commit
8827f9e8de
1 changed files with 16 additions and 0 deletions
|
@ -463,6 +463,22 @@ input[type=button].white, button.hifi-edit-button.white {
|
||||||
background-color: #afafaf;
|
background-color: #afafaf;
|
||||||
background: linear-gradient(#fff 20%, #afafaf 100%);
|
background: linear-gradient(#fff 20%, #afafaf 100%);
|
||||||
}
|
}
|
||||||
|
input[type=button].secondary, button.hifi-edit-button.secondary {
|
||||||
|
font-family: Raleway-Bold;
|
||||||
|
font-size: 10px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
vertical-align: top;
|
||||||
|
height: 18px;
|
||||||
|
min-width: 60px;
|
||||||
|
padding: 0 14px;
|
||||||
|
margin-right: 6px;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: none;
|
||||||
|
color: #fff;
|
||||||
|
background-color: #000;
|
||||||
|
background: linear-gradient(#343434 20%, #000 100%);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
input[type=button]:enabled:hover, button.hifi-edit-button:enabled:hover {
|
input[type=button]:enabled:hover, button.hifi-edit-button:enabled:hover {
|
||||||
background: linear-gradient(#000, #000);
|
background: linear-gradient(#000, #000);
|
||||||
|
|
Loading…
Reference in a new issue