OpenSlides/client/src/styles.scss

191 lines
3.3 KiB
SCSS
Raw Normal View History

@import '~@angular/material/theming';
@include mat-core();
/** Import brand theme and (new) component themes */
2018-11-05 17:40:32 +01:00
@import './assets/styles/openslides-theme.scss';
@import './app/site/site.component.scss-theme';
@import '../node_modules/roboto-fontface/css/roboto/roboto-fontface.css';
@import '../node_modules/roboto-fontface/css/roboto-condensed/roboto-condensed-fontface.css';
@mixin openslides-components-theme($theme) {
@include os-site-theme($theme);
/** More components are added here */
}
@include angular-material-theme($openslides-theme);
@include openslides-components-theme($openslides-theme);
@import '~angular-tree-component/dist/angular-tree-component.css';
* {
font-family: Roboto, Arial, Helvetica, sans-serif;
}
mat-icon {
font-family: MaterialIcons-Regular;
}
2018-06-25 17:03:52 +02:00
h1,
h2,
2018-11-09 09:24:38 +01:00
h3 {
font-family: Roboto-condensed, Arial, Helvetica, sans-serif;
}
2018-11-09 09:24:38 +01:00
h4 {
font-weight: 400;
font-size: 12px;
color: rgba(0, 0, 0, 0.54);
margin-bottom: 5px;
}
2018-06-25 17:03:52 +02:00
body {
// background: #e8eaed;
2018-06-25 17:03:52 +02:00
margin: 0 auto;
padding: 0;
}
.generic-mini-button {
bottom: -28px;
z-index: 100;
}
2018-09-18 18:27:14 +02:00
.save-button {
// needs to be important or will be overwritten locally
background-color: rgb(77, 243, 86) !important;
}
.text-success {
color: rgb(77, 243, 86);
}
// transform text to uppercase. Use on span, p, h, (...)
.upper {
text-transform: uppercase;
}
2018-09-18 18:27:14 +02:00
.red-warning-text {
color: red;
mat-icon {
color: red !important;
}
2018-09-18 18:27:14 +02:00
}
.icon-text-distance {
margin-left: 5px;
}
.no-content {
text-align: center;
color: gray;
}
.os-card {
max-width: 90%;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
}
2018-09-18 18:27:14 +02:00
//custom table header for search button, filtering and more. Used in ListViews
.custom-table-header {
width: 100%;
height: 60px;
line-height: 60px;
text-align: right;
background: white;
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.os-listview-table {
width: 100%;
/** hide mat header row */
.mat-header-row {
display: none;
}
/** size of the mat row */
mat-row {
height: 60px;
}
mat-row:hover {
cursor: pointer;
background-color: rgba(0, 0, 0, 0.025);
}
2018-11-05 17:40:32 +01:00
mat-row.selected {
cursor: pointer;
background-color: rgba(0, 0, 0, 0.055);
}
}
.card-plus-distance {
margin-top: 40px;
2018-06-25 17:03:52 +02:00
}
/**title of an app page*/
.app-name {
margin-left: 20px;
}
/**content of an app page*/
.app-content {
margin: 20px;
margin-top: 50px;
}
/**use to push content to the right side*/
.spacer {
flex: 1 1 auto;
}
/** helper classes for animation */
.on-transition-fade {
z-index: 100;
}
footer {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
z-index: 1;
}
mat-expansion-panel {
border-radius: 0 !important;
}
2018-11-09 09:24:38 +01:00
mat-panel-title mat-icon {
padding-right: 30px;
}
2018-11-16 16:09:15 +01:00
2018-11-05 17:40:32 +01:00
.hidden-cell {
flex: 0;
width: 0;
display: none;
}
.checkbox-cell {
flex: 1;
max-width: 30px;
}
2018-11-16 16:09:15 +01:00
// ngx-file-drop requires the custom style in the global css file
.file-drop-style {
margin: auto;
height: 100px;
border: 2px dotted #0782d0;
}
.os-tree {
.node-content-wrapper {
background-color: aliceblue;
border: 1px black;
width: 100%;
padding: 10px 20px;
}
tree-loading-component {
display: none;
}
}