mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 16:52:41 +01:00
Updated toggle buttons.
Summary: Re-adding the toggle buttons back, new styles. Test Plan: Visit the Maniphest page and see new buttons, click on and verify buttons work as expected. Reviewers: vrana, epriestley Reviewed By: epriestley CC: aran, Korvin, edward Differential Revision: https://secure.phabricator.com/D3942
This commit is contained in:
parent
5395a680f3
commit
652670e9bc
1 changed files with 36 additions and 0 deletions
|
@ -169,3 +169,39 @@ button.link:hover {
|
||||||
color: white;
|
color: white;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.toggle {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 4px 8px;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 14px;
|
||||||
|
color: #ffffff;
|
||||||
|
text-shadow: 0 1px 0 #777;
|
||||||
|
text-decoration: none;
|
||||||
|
white-space: nowrap;
|
||||||
|
vertical-align: baseline;
|
||||||
|
background-color: #a7a7a7;
|
||||||
|
font-family: 'Helvetica Neue', Helvetica, Arial;
|
||||||
|
font-size: 12px;
|
||||||
|
margin: 0 5px 2px;
|
||||||
|
|
||||||
|
-webkit-border-radius: 3px;
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.toggle:hover {
|
||||||
|
background-color: #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.toggle-selected {
|
||||||
|
background-color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.toggle-fixed {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.toggle-fixed:hover {
|
||||||
|
background-color: #555;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue