mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-09 10:25:08 +00:00
Report body inline style in Sass
Create bottombar component
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
///
|
||||
///
|
||||
/// @filename _extends.scss
|
||||
/// @project SOGo
|
||||
/// @version 3.alpha
|
||||
/// @module bottombar
|
||||
///
|
||||
/// botttombar extends
|
||||
///
|
||||
///
|
||||
|
||||
.sg-bottombar {
|
||||
@extends md-toolbar;
|
||||
|
||||
background-color:#212121; // fixme : use a variable
|
||||
position: fixed;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
// todo : implement a setting map and a getter for every z-index
|
||||
// NiceToHave : implement init map and function
|
||||
z-index: 100;
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
md-toolbar.md-THEME_NAME-theme {
|
||||
background-color: '{{primary-color}}';
|
||||
color: '{{primary-contrast}}';
|
||||
|
||||
.md-button {
|
||||
color: '{{primary-contrast}}';
|
||||
}
|
||||
|
||||
&.md-accent {
|
||||
background-color: '{{accent-color}}';
|
||||
color: '{{accent-contrast}}';
|
||||
}
|
||||
&.md-warn {
|
||||
background-color: '{{warn-color}}';
|
||||
color: '{{warn-contrast}}';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
///
|
||||
///
|
||||
/// @filename _bottombar.scss
|
||||
/// @project SOGo
|
||||
/// @version 3.alpha
|
||||
///
|
||||
/// Main botttombar module file define style for component bottombar, manly an extension of bottombar
|
||||
///
|
||||
///
|
||||
|
||||
@import 'components/toolbar/toolbar.scss'; // todo : remove when settings are done
|
||||
@import "mixins";
|
||||
@import "extends";
|
||||
// -----------------------------------------
|
||||
@@ -1,3 +1,4 @@
|
||||
// fixme : place all variables in settings
|
||||
$toolbar-tools-height: 64px !default;
|
||||
$toolbar-height: 64px !default;
|
||||
$toolbar-medium-tall-height: 88px !default;
|
||||
|
||||
Reference in New Issue
Block a user