Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/css/phui/phui-button.css
| Show First 20 Lines • Show All 76 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| button.grey, | button.grey, | ||||
| input[type="submit"].grey, | input[type="submit"].grey, | ||||
| a.grey, | a.grey, | ||||
| a.grey:visited { | a.grey:visited { | ||||
| background-color: #F7F7F9; | background-color: #F7F7F9; | ||||
| background-image: linear-gradient(to bottom, #ffffff, #f1f0f1); | background-image: linear-gradient(to bottom, #ffffff, #f1f0f1); | ||||
| border: 1px solid rgba({$alphablue},.2); | border: 1px solid rgba({$alphablue}, 0.3); | ||||
| color: {$darkgreytext}; | color: {$darkgreytext}; | ||||
| } | } | ||||
| button.simple, | button.simple, | ||||
| input[type="submit"].simple, | input[type="submit"].simple, | ||||
| a.simple, | a.simple, | ||||
| a.simple:visited { | a.simple:visited { | ||||
| background: #fff; | background: #fff; | ||||
| Show All 32 Lines | button:hover { | ||||
| background-image: linear-gradient(to bottom, #3498db, #1b6ba0); | background-image: linear-gradient(to bottom, #3498db, #1b6ba0); | ||||
| border-color: #115988; | border-color: #115988; | ||||
| transition: 0.1s; | transition: 0.1s; | ||||
| } | } | ||||
| a.button.grey:hover, | a.button.grey:hover, | ||||
| button.grey:hover { | button.grey:hover { | ||||
| background-image: linear-gradient(to bottom, #ffffff, #eeebec); | background-image: linear-gradient(to bottom, #ffffff, #eeebec); | ||||
| border-color: rgba({$alphablue}, 0.3); | border-color: rgba({$alphablue}, 0.4); | ||||
| transition: 0.1s; | transition: 0.1s; | ||||
| } | } | ||||
| a.button.green:hover, | a.button.green:hover, | ||||
| button.green:hover { | button.green:hover { | ||||
| border-color: #127336; | border-color: #127336; | ||||
| background-color: #0DAD48; | background-color: #0DAD48; | ||||
| background-image: linear-gradient(to bottom, #23BB5B, #178841); | background-image: linear-gradient(to bottom, #23BB5B, #178841); | ||||
| ▲ Show 20 Lines • Show All 268 Lines • Show Last 20 Lines | |||||