mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
32 lines
750 B
Plaintext
32 lines
750 B
Plaintext
|
/**
|
||
|
* EGroupware: Stylite Pixelegg template
|
||
|
*
|
||
|
* Please do NOT change css-files directly, instead change less-files and compile them!
|
||
|
*
|
||
|
* @link http://www.egroupware.org
|
||
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||
|
* @author Stefan Reinhard <stefan.reinhard@pixelegg.de>
|
||
|
* @package pixelegg
|
||
|
* @version $Id: pixelegg.less 3017 2014-04-15 08:35:38Z ralfbecker $
|
||
|
|
||
|
## Definitions of all borders
|
||
|
|
||
|
*/
|
||
|
@import "definitions.less";
|
||
|
|
||
|
// Rahmen für Schaltflächen
|
||
|
|
||
|
.border_normal{
|
||
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
||
|
}
|
||
|
|
||
|
.border_hover{
|
||
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
||
|
}
|
||
|
.border_active{
|
||
|
border: 1px solid rgba(0, 0, 0, 0.9);
|
||
|
}
|
||
|
|
||
|
.border_none{
|
||
|
border: 0px solid rgba(0, 0, 0, 0.9);
|
||
|
}
|