mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
32 lines
800 B
Plaintext
32 lines
800 B
Plaintext
|
/**
|
||
|
* EGroupware: Pixelegg styles
|
||
|
*
|
||
|
* Pixelegg definitions for tutorials
|
||
|
*
|
||
|
* 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 Hadi NAtegh <hn@stylite.de>
|
||
|
* @package phpgwapi
|
||
|
* @version $Id$
|
||
|
*/
|
||
|
@import (reference) "definitions.less";
|
||
|
@import "../../phpgwapi/templates/default/def_tutorials.css";
|
||
|
|
||
|
span.egw_tutorial_title {
|
||
|
color: #FFFFFF;
|
||
|
font-weight: bold;
|
||
|
text-align: left;
|
||
|
width: 95%;
|
||
|
background-color: #434343;
|
||
|
border: 1px solid #B3B3B3;
|
||
|
padding-top: 4px;
|
||
|
padding-left: 5px;
|
||
|
border-radius: 2px;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
|