calendar/css/public.scss

88 lines
2.0 KiB
SCSS
Raw Normal View History

/**
Bugsbane master (#710) * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud The documentation link still point to OC docs, as there's no real platform neutral place to point people to. * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Remove specific reference to ownCloud * Make cloud references platform neutral * Remove temporary -swp files * Add suggestions from @Mar1u5 As per his suggestions in: https://github.com/owncloud/calendar/pull/699#discussion-diff-74709329 https://github.com/owncloud/calendar/pull/699#discussion-diff-74709350 * Add suggestions from @Mar1u5 As per: https://github.com/owncloud/calendar/pull/699#discussion-diff-74709387 https://github.com/owncloud/calendar/pull/699#discussion-diff-74709400 https://github.com/owncloud/calendar/pull/699#discussion-diff-74709417 * Added Mar1u5's last suggestion At https://github.com/owncloud/calendar/pull/699#discussion-diff-74709362 * "server installation" > "instance installation" As per https://github.com/owncloud/calendar/pull/699#discussion_r74913034 * "installation folder">"instance's installation folder" As per https://github.com/owncloud/calendar/pull/699#discussion-diff-75082204
2016-08-17 20:16:24 +00:00
* Calendar App
*
* @copyright 2019 Georg Ehrke <oc.list@georgehrke.com>
*
* @author Georg Ehrke
* @author Richard Steinmetz <richard@steinmetz.cloud>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
2014-05-03 16:20:09 +00:00
#emptycontent-container #emptycontent {
color: #a9a9a9 !important;
}
.content.app-calendar.app-calendar-public-embedded {
#embed-header {
position: fixed;
top: 0;
left: 0;
height: 50px;
width: 100%;
box-sizing: border-box;
background-color: var(--color-main-background);
border-bottom: 1px solid var(--color-border);
overflow: visible;
z-index: 2000;
display: flex;
justify-content: space-between;
.embed-header__date-section,
.embed-header__share-section {
display: flex;
gap: 5px;
}
.view-button-section {
.button {
min-width: 75px;
}
}
.datepicker-button-section {
&__datepicker-label {
min-width: 150px;
}
}
}
.app-content {
margin-top: 44px;
//position: absolute !important;
//top: 44px;
//left: 0;
//right: 0;
//bottom: 0;
//min-height: unset !important;
}
}
#body-public {
input#initial-state-calendar-is_embed ~ header#header {
display: none;
}
.app-calendar-public {
& + footer {
// Only show bottom rounded corners
border-radius: 0 0 var(--border-radius-large) var(--border-radius-large);
}
.app-content {
height: calc(100% - 65px) !important; // $footer-height is hardcoded to 65px in core/css/public.scss
}
}
}