2017-06-01 22:30:00 +02:00
|
|
|
/**
|
|
|
|
* @provides phui-button-simple-css
|
|
|
|
* @requires phui-button-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* - Basic -------------------------------------------------------------------*/
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
button.phui-button-simple,
|
|
|
|
input[type="submit"].phui-button-simple,
|
|
|
|
a.phui-button-simple,
|
|
|
|
a.phui-button-simple:visited {
|
2017-07-17 20:08:17 +02:00
|
|
|
background: {$page.content};
|
2017-06-01 22:30:00 +02:00
|
|
|
color: {$bluetext};
|
|
|
|
border: 1px solid {$lightblueborder};
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
button.phui-button-simple .phui-icon-view,
|
|
|
|
input[type="submit"].phui-button-simple .phui-icon-view,
|
|
|
|
a.phui-button-simple .phui-icon-view,
|
|
|
|
a.phui-button-simple:visited .phui-icon-view {
|
2017-06-01 22:30:00 +02:00
|
|
|
color: {$lightbluetext};
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
a.button.phui-button-simple:hover,
|
|
|
|
button.phui-button-simple:hover {
|
2017-06-01 22:30:00 +02:00
|
|
|
border-color: {$blueborder};
|
|
|
|
background-image: none;
|
2017-07-17 20:08:17 +02:00
|
|
|
background-color: {$page.content};
|
2017-06-01 22:30:00 +02:00
|
|
|
transition: 0s;
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
a.phui-button-simple.current {
|
2017-06-01 22:30:00 +02:00
|
|
|
background: {$lightblue};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* - Red --------------------------------------------------------------------*/
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
button.phui-button-simple.button-red,
|
|
|
|
input[type="submit"].phui-button-simple.button-red,
|
|
|
|
a.phui-button-simple.button-red,
|
|
|
|
a.phui-button-simple.button-red:visited {
|
2017-06-02 19:32:39 +02:00
|
|
|
background: {$sh-redbackground};
|
2017-06-01 22:30:00 +02:00
|
|
|
color: {$redtext};
|
|
|
|
border: 1px solid {$sh-redborder};
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
button.phui-button-simple.button-red .phui-icon-view,
|
|
|
|
input[type="submit"].phui-button-simple.button-red .phui-icon-view,
|
|
|
|
a.phui-button-simple.button-red .phui-icon-view,
|
|
|
|
a.phui-button-simple.button-red:visited .phui-icon-view {
|
2017-06-01 22:30:00 +02:00
|
|
|
color: {$redtext};
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
a.button.phui-button-simple.button-red:hover,
|
|
|
|
button.phui-button-simple.button-red:hover {
|
2017-06-02 19:32:39 +02:00
|
|
|
border-color: {$sh-redtext};
|
2017-06-01 22:30:00 +02:00
|
|
|
background-image: none;
|
2017-06-02 19:32:39 +02:00
|
|
|
background-color: {$sh-redbackground};
|
2017-06-01 22:30:00 +02:00
|
|
|
transition: 0s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* - Green ------------------------------------------------------------------*/
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
button.phui-button-simple.button-green,
|
|
|
|
input[type="submit"].phui-button-simple.button-green,
|
|
|
|
a.phui-button-simple.button-green,
|
|
|
|
a.phui-button-simple.button-green:visited {
|
2017-06-02 19:32:39 +02:00
|
|
|
background: {$sh-greenbackground};
|
2017-06-01 22:30:00 +02:00
|
|
|
color: {$greentext};
|
|
|
|
border: 1px solid {$sh-greenborder};
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
button.phui-button-simple.button-green .phui-icon-view,
|
|
|
|
input[type="submit"].phui-button-simple.button-green .phui-icon-view,
|
|
|
|
a.phui-button-simple.button-green .phui-icon-view,
|
|
|
|
a.phui-button-simple.button-green:visited .phui-icon-view {
|
2017-06-01 22:30:00 +02:00
|
|
|
color: {$greentext};
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
a.button.phui-button-simple.button-green:hover,
|
|
|
|
button.phui-button-simple.button-green:hover {
|
2017-06-02 19:32:39 +02:00
|
|
|
border-color: {$sh-greentext};
|
2017-06-01 22:30:00 +02:00
|
|
|
background-image: none;
|
2017-06-02 19:32:39 +02:00
|
|
|
background-color: {$sh-greenbackground};
|
|
|
|
transition: 0s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* - Yellow -----------------------------------------------------------------*/
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
button.phui-button-simple.button-yellow,
|
|
|
|
input[type="submit"].phui-button-simple.button-yellow,
|
|
|
|
a.phui-button-simple.button-yellow,
|
|
|
|
a.phui-button-simple.button-yellow:visited {
|
2017-06-02 19:32:39 +02:00
|
|
|
background-color: {$sh-yellowbackground};
|
|
|
|
color: {$sh-yellowtext};
|
|
|
|
border: 1px solid {$sh-yellowborder};
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
button.phui-button-simple.button-yellow .phui-icon-view,
|
|
|
|
input[type="submit"].phui-button-simple.button-yellow .phui-icon-view,
|
|
|
|
a.phui-button-simple.button-yellow .phui-icon-view,
|
|
|
|
a.phui-button-simple.button-yellow:visited .phui-icon-view {
|
2017-06-02 19:32:39 +02:00
|
|
|
color: {$sh-yellowicon};
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
a.button.phui-button-simple.button-yellow:hover,
|
|
|
|
button.phui-button-simple.button-yellow:hover {
|
2017-06-02 19:32:39 +02:00
|
|
|
border-color: {$sh-yellowtext};
|
|
|
|
background-image: none;
|
|
|
|
background-color: {$sh-yellowbackground};
|
2017-06-01 22:30:00 +02:00
|
|
|
transition: 0s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* - Misc -------------------------------------------------------------------*/
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
a.button.phui-button-simple .phui-icon-view {
|
2017-06-01 22:30:00 +02:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
a.button.phui-button-simple.phuix-dropdown-open {
|
2017-06-01 22:30:00 +02:00
|
|
|
background-color: #fff;
|
|
|
|
color: {$blue};
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2017-06-05 22:14:34 +02:00
|
|
|
a.button.phui-button-simple.phuix-dropdown-open:hover .phui-icon-view {
|
2017-06-01 22:30:00 +02:00
|
|
|
color: {$blue};
|
|
|
|
}
|