raw-general.css (apache-openmeetings-6.1.0-src) | : | raw-general.css (apache-openmeetings-6.2.0-src) | ||
---|---|---|---|---|
/* Licensed under the Apache License, Version 2.0 (the "License") http://www.apa che.org/licenses/LICENSE-2.0 */ | /* Licensed under the Apache License, Version 2.0 (the "License") http://www.apa che.org/licenses/LICENSE-2.0 */ | |||
:root { | ||||
--app-height: 100%; | ||||
} | ||||
html, body { | html, body { | |||
height: 100%; | width: 100vw; | |||
height: var(--app-height); | ||||
margin: 0; | margin: 0; | |||
padding: 0; | ||||
font-family: Arial, Helvetica, sans-serif; | font-family: Arial, Helvetica, sans-serif; | |||
overflow-y: hidden; | overflow-y: hidden; | |||
} | } | |||
.main-loader { | .main-loader { | |||
height: 100%; | height: 100%; | |||
} | } | |||
.main-container { | .main-container { | |||
height: calc(100% - var(--header-height)); | height: calc(100% - var(--header-height)); | |||
} | } | |||
.main { | .main { | |||
skipping to change at line 218 | skipping to change at line 223 | |||
display: inline-block; | display: inline-block; | |||
position: relative; | position: relative; | |||
} | } | |||
.om-icon.big { | .om-icon.big { | |||
width: 34px; | width: 34px; | |||
height: 34px; | height: 34px; | |||
} | } | |||
.om-icon::before { | .om-icon::before { | |||
font-family: 'Font Awesome 5 Free'; | font-family: 'Font Awesome 5 Free'; | |||
font-weight: 900; | font-weight: 900; | |||
color: var(--secondary); | color: var(--bs-secondary); | |||
font-size: 1.2em; | font-size: 1.2em; | |||
vertical-align: text-bottom; | vertical-align: text-bottom; | |||
line-height: 1em; | line-height: 1em; | |||
} | } | |||
.om-icon.big::before { | .om-icon.big::before { | |||
font-size: 2.0em; | font-size: 2.0em; | |||
line-height: 1.2em; | line-height: 1.2em; | |||
} | } | |||
.add.om-icon::before { | .add.om-icon::before { | |||
content: '\f055'; | content: '\f055'; | |||
} | } | |||
.online.om-icon::before { | .online.om-icon::before { | |||
color: var(--success); | color: var(--bs-success); | |||
content: '\f111'; | content: '\f111'; | |||
} | } | |||
.offline.om-icon::before { | .offline.om-icon::before { | |||
color: var(--danger); | color: var(--bs-danger); | |||
content: '\f111'; | content: '\f111'; | |||
} | } | |||
.message { | .message { | |||
margin: 50px; | margin: 50px; | |||
border: 1px solid black; | border: 1px solid black; | |||
padding: 15px; | padding: 15px; | |||
border-radius: 8px; | border-radius: 8px; | |||
} | } | |||
.private.message.body { | .private.message.body { | |||
border: 0; | border: 0; | |||
skipping to change at line 297 | skipping to change at line 302 | |||
.email { | .email { | |||
background-repeat: no-repeat !important; | background-repeat: no-repeat !important; | |||
background-position: 5px 3px !important; | background-position: 5px 3px !important; | |||
background-size: 16px 16px !important; | background-size: 16px 16px !important; | |||
padding-top: 2px; | padding-top: 2px; | |||
display: block; | display: block; | |||
text-align:left; | text-align:left; | |||
} | } | |||
.email.selected { | .email.selected { | |||
border: 1px solid #cccccc; | border: 1px solid #cccccc; | |||
background-color:var(--light); | background-color:var(--bs-light); | |||
} | } | |||
.email.folder { | .email.folder { | |||
font-weight: normal; | font-weight: normal; | |||
position: relative; | position: relative; | |||
} | } | |||
.email.folder .delete { | .email.folder .delete { | |||
position:absolute; | position:absolute; | |||
right: 2px; | right: 2px; | |||
top: 2px; | top: 2px; | |||
font-weight: normal; | font-weight: normal; | |||
skipping to change at line 611 | skipping to change at line 616 | |||
content: "\f0d7"; | content: "\f0d7"; | |||
} | } | |||
.dragbox .dragbox-header .dragbox-toggle.collapsed::before { | .dragbox .dragbox-header .dragbox-toggle.collapsed::before { | |||
content: "\f0d8"; | content: "\f0d8"; | |||
} | } | |||
.dragbox .dragbox-header .dragbox-actions .icon.refresh::before { | .dragbox .dragbox-header .dragbox-actions .icon.refresh::before { | |||
content: "\f2f1"; | content: "\f2f1"; | |||
} | } | |||
.dragbox .dragbox-header .dragbox-actions .icon.delete::before { | .dragbox .dragbox-header .dragbox-actions .icon.delete::before { | |||
content: "\f00d"; | content: "\f00d"; | |||
color: var(--danger); | color: var(--bs-danger); | |||
} | } | |||
.dragbox-content .tableWrapper { | .dragbox-content .tableWrapper { | |||
/* room users on dashboard */ | /* room users on dashboard */ | |||
width: auto; | width: auto; | |||
height: 100px; | height: 100px; | |||
} | } | |||
.dragbox-content .rooms-widget { | .dragbox-content .rooms-widget { | |||
display: flex; | display: flex; | |||
} | } | |||
.sort-icon a { | .sort-icon a { | |||
vertical-align: middle; | vertical-align: middle; | |||
text-decoration: none; | ||||
} | } | |||
.sort-icon.none a::before { | .sort-icon.none a::before { | |||
content: '\f0dc'; | content: '\f0dc'; | |||
} | } | |||
.sort-icon.desc a::before { | .sort-icon.desc a::before { | |||
content: '\f0dd'; | content: '\f0dd'; | |||
} | } | |||
.sort-icon.asc a::before { | .sort-icon.asc a::before { | |||
content: '\f0de'; | content: '\f0de'; | |||
} | } | |||
End of changes. 9 change blocks. | ||||
6 lines changed or deleted | 12 lines changed or added |