mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
c6527ff2a4
cleanup less files separate the definitions in different files merge them in definitions.less ### same with layout_ files / merge in layout_defintions.less # change all app.less files
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
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 border radius
|
|
|
|
*/
|
|
@import "definitions.less";
|
|
|
|
/*#####################################################################*/
|
|
/* Radius*/
|
|
|
|
.border_radius_button_lefttop {
|
|
-webkit-border-radius: 3px;
|
|
-webkit-border-top-left-radius: 10px;
|
|
-moz-border-radius: 3px;
|
|
-moz-border-radius-topleft: 10px;
|
|
border-radius: 3px;
|
|
border-top-left-radius: 10px;
|
|
}
|
|
|
|
.border_radius_button_righttop {
|
|
-webkit-border-radius: 3px;
|
|
-webkit-border-top-right-radius: 20px;
|
|
-moz-border-radius: 3px;
|
|
-moz-border-radius-topright: 20px;
|
|
border-radius: 3px;
|
|
border-top-right-radius: 20px;
|
|
}
|
|
|
|
.border_radius_button_normal {
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|