2017-01-09 01:50:23 -06:00
|
|
|
#main-menu {
|
2020-09-03 09:41:01 -05:00
|
|
|
top: 0;
|
2022-01-10 09:44:17 -06:00
|
|
|
height: auto;
|
2020-09-03 09:41:01 -05:00
|
|
|
z-index: 1000;
|
|
|
|
outline: none;
|
|
|
|
float: left;
|
|
|
|
background-color: transparent;
|
|
|
|
margin-left: 5px;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: inline;
|
2017-01-09 01:50:23 -06:00
|
|
|
}
|
2017-01-09 02:45:24 -06:00
|
|
|
|
2017-02-17 08:24:11 -06:00
|
|
|
#main-menu.readonly {
|
2020-09-03 09:41:01 -05:00
|
|
|
top: 0px;
|
2018-09-07 19:53:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#document-header {
|
2020-09-03 09:41:01 -05:00
|
|
|
position: relative;
|
2021-12-09 17:21:55 -06:00
|
|
|
background: transparent;
|
2018-09-07 19:53:52 -05:00
|
|
|
}
|
2020-09-18 07:23:54 -05:00
|
|
|
/*avoid multiple document-headers in readonly mode*/
|
|
|
|
.main-nav.hasnotebookbar.readonly > #main-menu #document-header {
|
|
|
|
display: none;
|
|
|
|
}
|
2023-09-19 08:34:43 -05:00
|
|
|
|
|
|
|
/* hide documen-header to free up space when using narrow windows */
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
.main-nav.hasnotebookbar:not(.readonly) #document-header {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-12 10:40:55 -05:00
|
|
|
.document-logo {
|
2020-09-03 09:41:01 -05:00
|
|
|
position: relative;
|
2021-11-17 12:52:11 -06:00
|
|
|
width: 30px;
|
2020-09-03 09:41:01 -05:00
|
|
|
height: 30px;
|
2018-09-07 19:53:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.document-title {
|
2021-05-17 04:59:23 -05:00
|
|
|
height: 32px;
|
2020-09-03 09:41:01 -05:00
|
|
|
white-space: nowrap;
|
|
|
|
display: flex;
|
2024-02-05 09:37:16 -06:00
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 5px;
|
|
|
|
flex-direction: column;
|
2024-05-20 03:03:37 -05:00
|
|
|
width: fit-content;
|
2018-09-07 19:53:52 -05:00
|
|
|
}
|
|
|
|
|
2021-08-25 05:02:29 -05:00
|
|
|
.readonly .document-title {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2018-09-07 19:53:52 -05:00
|
|
|
#document-titlebar {
|
2020-09-03 09:41:01 -05:00
|
|
|
display: inline-table; /*new*/
|
|
|
|
table-layout: fixed;
|
|
|
|
border-spacing: 5px 0;
|
|
|
|
max-height: 39px;
|
2021-11-17 12:52:11 -06:00
|
|
|
flex-grow: 1;
|
2020-08-20 05:35:10 -05:00
|
|
|
}
|
|
|
|
|
2021-08-25 05:02:29 -05:00
|
|
|
.readonly #document-titlebar {
|
|
|
|
float: right;
|
|
|
|
margin-right: 52px;
|
|
|
|
}
|
|
|
|
|
2020-09-18 07:23:54 -05:00
|
|
|
.main-nav.hasnotebookbar:not(.readonly) #document-titlebar {
|
2023-09-19 08:34:43 -05:00
|
|
|
display: flex;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
2024-05-20 13:56:36 -05:00
|
|
|
@media screen and (max-width: 900px) {
|
2023-09-19 08:34:43 -05:00
|
|
|
.main-nav.hasnotebookbar:not(.readonly) #document-titlebar {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-02-17 08:24:11 -06:00
|
|
|
}
|
2021-08-25 04:58:00 -05:00
|
|
|
|
2023-02-27 02:36:49 -06:00
|
|
|
.main-nav.readonly #optionstoolboxdown {
|
2020-11-06 04:31:30 -06:00
|
|
|
display: none;
|
|
|
|
}
|
2017-01-10 09:48:05 -06:00
|
|
|
.main-nav {
|
2022-02-23 16:36:26 -06:00
|
|
|
height: var(--header-height); /* on mouseover menubar items, border emerges */
|
2023-09-19 08:34:43 -05:00
|
|
|
width: 100%;
|
2022-02-22 15:55:15 -06:00
|
|
|
background: var(--color-background-lighter);
|
2021-07-08 07:34:58 -05:00
|
|
|
padding: 3px 3px 3px 0;
|
2020-09-03 09:41:01 -05:00
|
|
|
white-space: nowrap;
|
2021-05-18 15:02:14 -05:00
|
|
|
z-index: 12;
|
2021-11-17 12:52:11 -06:00
|
|
|
display: flex;
|
2022-01-10 09:44:17 -06:00
|
|
|
align-items: center;
|
2017-01-10 09:48:05 -06:00
|
|
|
}
|
2020-09-18 07:23:54 -05:00
|
|
|
.main-nav.readonly {
|
|
|
|
position: relative;
|
2022-02-13 15:34:03 -06:00
|
|
|
border-bottom: 1px solid var(--color-border);
|
2020-09-18 07:23:54 -05:00
|
|
|
}
|
2021-11-24 11:09:00 -06:00
|
|
|
.main-nav.hasnotebookbar {
|
2022-02-23 16:36:26 -06:00
|
|
|
height: var(--header-height);
|
2022-01-11 06:17:26 -06:00
|
|
|
/* overflow is set dynamically */
|
2022-01-10 08:22:16 -06:00
|
|
|
scrollbar-width: none;
|
|
|
|
-ms-scrollbar: none;
|
|
|
|
}
|
|
|
|
.main-nav.hasnotebookbar::-webkit-scrollbar {
|
|
|
|
height: 0;
|
2021-11-24 11:09:00 -06:00
|
|
|
}
|
2020-09-18 07:23:54 -05:00
|
|
|
.main-nav.hasnotebookbar:not(.readonly) {
|
2022-02-22 15:55:15 -06:00
|
|
|
background: var(--color-main-background);
|
2021-05-18 15:02:14 -05:00
|
|
|
padding: 0px;
|
2023-09-19 09:52:25 -05:00
|
|
|
overflow: scroll hidden;
|
2020-07-14 07:09:06 -05:00
|
|
|
}
|
|
|
|
|
2017-01-09 02:45:24 -06:00
|
|
|
/* Customizations to sm-simple theme to make it look like LO menu, lo-menu class */
|
|
|
|
.lo-menu {
|
2020-09-03 09:41:01 -05:00
|
|
|
border: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
2022-02-05 02:40:49 -06:00
|
|
|
background: var(--color-main-background);
|
2020-09-03 09:41:01 -05:00
|
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
|
|
-webkit-user-select: none; /* Chrome/Safari/Opera */
|
|
|
|
-khtml-user-select: none; /* Konqueror */
|
|
|
|
-moz-user-select: none; /* Firefox */
|
|
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
|
|
user-select: none;
|
|
|
|
cursor: default;
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.lo-menu a, .lo-menu a:hover, .lo-menu a:focus, .lo-menu a:active {
|
2021-11-03 06:49:45 -05:00
|
|
|
font-family: var(--cool-font);
|
2022-02-23 16:46:07 -06:00
|
|
|
font-size: var(--default-font-size);
|
2020-09-03 09:41:01 -05:00
|
|
|
line-height: 15px;
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
|
2017-01-12 05:31:52 -06:00
|
|
|
.lo-menu ul a, .lo-menu ul a:hover, .lo-menu ul a:focus, .lo-menu ul a:active {
|
2022-02-23 16:46:07 -06:00
|
|
|
font-size: var(--default-font-size);
|
2017-01-12 05:31:52 -06:00
|
|
|
}
|
|
|
|
|
2017-01-09 02:45:24 -06:00
|
|
|
.lo-menu a.disabled {
|
2022-10-18 04:12:36 -05:00
|
|
|
cursor: not-allowed;
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
2018-11-12 12:32:48 -06:00
|
|
|
|
|
|
|
.lo-menu > li > a, .lo-menu > li > a.has-submenu {
|
2021-11-24 11:09:00 -06:00
|
|
|
padding: 8px;
|
2020-11-23 04:06:25 -06:00
|
|
|
z-index: 400;
|
2022-01-27 08:43:35 -06:00
|
|
|
border: 1px solid transparent;
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.lo-menu a, .lo-menu a:hover, .lo-menu a:focus, .lo-menu a:active, .lo-menu a.highlighted {
|
2020-09-03 09:41:01 -05:00
|
|
|
padding: 5px 22px;
|
2022-01-26 09:24:29 -06:00
|
|
|
color: var(--color-main-text);
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
.lo-menu a:hover, .lo-menu a:focus, .lo-menu a:active, .lo-menu a.highlighted {
|
2022-02-05 02:40:49 -06:00
|
|
|
background: var(--color-background-darker);
|
|
|
|
color: var(--color-text-darker);
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
2020-10-06 09:26:54 -05:00
|
|
|
.lo-menu > li, .lo-menu > li > .disabled {
|
2021-12-09 17:21:55 -06:00
|
|
|
background: transparent; /* top-level menus remain greyish */
|
2020-09-03 09:41:01 -05:00
|
|
|
border-left-color: transparent;
|
2017-01-10 12:08:06 -06:00
|
|
|
}
|
2020-10-06 09:26:54 -05:00
|
|
|
.lo-menu > li .disabled {
|
2022-02-17 18:11:31 -06:00
|
|
|
background: var(--color-main-background);
|
2022-01-26 09:24:29 -06:00
|
|
|
color: var(--color-text-lighter);
|
2020-10-06 09:26:54 -05:00
|
|
|
}
|
2017-01-09 02:45:24 -06:00
|
|
|
.lo-menu > li > a:hover, .lo-menu > li > a:focus, .lo-menu > li > a:active, .lo-menu > li > a.highlighted {
|
2022-02-05 02:40:49 -06:00
|
|
|
background: var(--color-background-darker);
|
|
|
|
color: var(--color-text-darker);
|
|
|
|
border-color: var(--color-border-darker);
|
|
|
|
border-bottom: 1px solid var(--color-border-darker);
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
.lo-menu > li > a.highlighted {
|
2022-02-24 14:04:47 -06:00
|
|
|
border-bottom-color: var(--color-border-dark);
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
.lo-menu > li > ul {
|
2020-09-03 09:41:01 -05:00
|
|
|
margin-top: -1px !important;
|
|
|
|
z-index: 400;
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
.lo-menu > li > a span.sub-arrow {
|
2020-09-03 09:41:01 -05:00
|
|
|
display: none;
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
2022-02-21 06:56:43 -06:00
|
|
|
/* Disable parent menu styles for notebookbar */
|
|
|
|
.lo-menu.notebookbar > li > a {
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
line-height: normal;
|
|
|
|
}
|
|
|
|
|
2017-01-09 02:45:24 -06:00
|
|
|
.lo-menu ul {
|
2022-02-05 02:40:49 -06:00
|
|
|
border: 1px solid var(--color-border);
|
|
|
|
background: var(--color-main-background);
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
.lo-menu ul a span.sub-arrow {
|
2020-09-03 09:41:01 -05:00
|
|
|
right: 0;
|
|
|
|
margin-right: 5px;
|
2020-09-23 05:25:50 -05:00
|
|
|
background: transparent url('images/lc_menu_chevron.svg') no-repeat center right; /* we want them to be transparent always whether mobile or desktop */
|
|
|
|
color: transparent;
|
|
|
|
/*transform: rotate(180deg);*/
|
|
|
|
}
|
|
|
|
.lo-menu ul a:hover > span.sub-arrow {
|
|
|
|
-webkit-filter: brightness(100);
|
|
|
|
filter: brightness(100);
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
.lo-menu ul > li {
|
2020-09-03 09:41:01 -05:00
|
|
|
border-left: 0;
|
|
|
|
border-top: none;
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
.lo-menu a.separator {
|
2020-09-03 09:41:01 -05:00
|
|
|
height: 1px;
|
|
|
|
margin: 4px 0;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
2022-02-05 02:40:49 -06:00
|
|
|
background-color: var(--color-border-lighter);
|
2017-01-09 02:45:24 -06:00
|
|
|
}
|
|
|
|
/* lo-menu customizations end */
|
2017-01-10 12:08:06 -06:00
|
|
|
|
|
|
|
.main-nav:after {
|
2020-09-03 09:41:01 -05:00
|
|
|
clear: both;
|
|
|
|
content: '\00a0';
|
|
|
|
display: block;
|
|
|
|
height: 0;
|
|
|
|
font: 0px/0 serif;
|
|
|
|
overflow: hidden;
|
2017-01-10 12:08:06 -06:00
|
|
|
}
|
|
|
|
|
2020-03-19 09:27:36 -05:00
|
|
|
/* Hamburger button */
|
2017-01-10 12:08:06 -06:00
|
|
|
|
|
|
|
.main-menu-btn {
|
2020-09-03 09:41:01 -05:00
|
|
|
margin: 2px 10px;
|
|
|
|
position: relative;
|
|
|
|
display: none;
|
|
|
|
width: 17px;
|
|
|
|
height: 21px;
|
|
|
|
text-indent: 17px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
cursor: pointer;
|
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
2017-01-10 12:08:06 -06:00
|
|
|
}
|
|
|
|
|
2020-03-19 09:27:36 -05:00
|
|
|
/* Hamburger icon */
|
2017-01-10 12:08:06 -06:00
|
|
|
|
|
|
|
.main-menu-btn-icon,
|
|
|
|
.main-menu-btn-icon:before,
|
|
|
|
.main-menu-btn-icon:after {
|
2020-09-03 09:41:01 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 1px;
|
|
|
|
height: 2px;
|
|
|
|
width: 17px;
|
|
|
|
background: #555;
|
|
|
|
-webkit-transition: all 0.25s;
|
|
|
|
transition: all 0.25s;
|
2017-01-10 12:08:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-menu-btn-icon:before {
|
2020-09-03 09:41:01 -05:00
|
|
|
content: '';
|
|
|
|
top: -7px;
|
|
|
|
left: 0;
|
2017-01-10 12:08:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-menu-btn-icon:after {
|
2020-09-03 09:41:01 -05:00
|
|
|
content: '';
|
|
|
|
top: 7px;
|
|
|
|
left: 0;
|
2017-01-10 12:08:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* hide menu state checkbox (keep it visible to screen readers) */
|
|
|
|
|
|
|
|
#main-menu-state {
|
2020-09-03 09:41:01 -05:00
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
margin: -1px;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
2017-01-10 12:08:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-11 08:03:57 -05:00
|
|
|
/* always show the menu in desktop view */
|
2017-01-10 12:08:06 -06:00
|
|
|
#main-menu-state:not(:checked) ~ #main-menu {
|
2020-09-03 09:41:01 -05:00
|
|
|
display: block;
|
2017-01-10 12:08:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#main-menu-state:checked ~ #main-menu {
|
2020-09-03 09:41:01 -05:00
|
|
|
display: block;
|
2017-01-10 12:08:06 -06:00
|
|
|
}
|
|
|
|
|
2018-11-12 12:32:48 -06:00
|
|
|
/* Some more lo-menu specific customizations */
|
|
|
|
|
|
|
|
/* The smartmenus plugin doesn't seem to have support for icons, so implement our own pseudo-elements */
|
|
|
|
.lo-menu-item-checked::before {
|
2020-09-03 09:41:01 -05:00
|
|
|
position: absolute;
|
2020-09-23 05:25:50 -05:00
|
|
|
content: ' ';
|
|
|
|
left: 2px;
|
|
|
|
background: url('images/lc_listitem-selected.svg') no-repeat left -2px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2018-11-12 12:32:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.lo-menu-item-checked:hover::before {
|
2022-02-24 14:04:47 -06:00
|
|
|
color: var(--color-text-dark);
|
2020-09-23 05:25:50 -05:00
|
|
|
-webkit-filter: brightness(100);
|
|
|
|
filter: brightness(100);
|
2018-11-12 12:32:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.writer-icon-img {
|
2020-09-03 09:41:01 -05:00
|
|
|
background-image: url('images/x-office-document.svg');
|
2022-02-17 16:34:03 -06:00
|
|
|
background-size: 16px 16px;
|
2020-09-03 09:41:01 -05:00
|
|
|
background-repeat: no-repeat;
|
2022-02-17 16:34:03 -06:00
|
|
|
background-position: center;
|
2018-11-12 12:32:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.calc-icon-img {
|
2020-09-03 09:41:01 -05:00
|
|
|
background-image: url('images/x-office-spreadsheet.svg');
|
2022-02-17 16:34:03 -06:00
|
|
|
background-size: 16px 16px;
|
2020-09-03 09:41:01 -05:00
|
|
|
background-repeat: no-repeat;
|
2022-02-17 16:34:03 -06:00
|
|
|
background-position: center;
|
2018-11-12 12:32:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.impress-icon-img {
|
2020-09-03 09:41:01 -05:00
|
|
|
background-image: url('images/x-office-presentation.svg');
|
2022-02-17 16:34:03 -06:00
|
|
|
background-size: 16px 16px;
|
2020-09-03 09:41:01 -05:00
|
|
|
background-repeat: no-repeat;
|
2022-02-17 16:34:03 -06:00
|
|
|
background-position: center;
|
2018-11-12 12:32:48 -06:00
|
|
|
}
|
|
|
|
|
2020-10-26 01:54:52 -05:00
|
|
|
.draw-icon-img {
|
|
|
|
background-image: url('images/x-office-drawing.svg');
|
2022-02-17 16:34:03 -06:00
|
|
|
background-size: 16px 16px;
|
2020-10-26 01:54:52 -05:00
|
|
|
background-repeat: no-repeat;
|
2022-02-17 16:34:03 -06:00
|
|
|
background-position: center;
|
2020-10-26 01:54:52 -05:00
|
|
|
}
|
|
|
|
|
2018-11-08 09:41:53 -06:00
|
|
|
#menu-last-mod a {
|
2022-01-26 09:24:29 -06:00
|
|
|
color: var(--color-text-lighter);
|
2020-09-09 04:02:15 -05:00
|
|
|
padding: 8px 15px 7px;
|
2020-11-23 04:06:25 -06:00
|
|
|
z-index: 400;
|
2020-09-03 09:41:01 -05:00
|
|
|
border: 1px solid transparent;
|
2018-11-08 09:41:53 -06:00
|
|
|
}
|
2021-05-29 07:31:33 -05:00
|
|
|
|
2022-01-27 09:02:11 -06:00
|
|
|
#menu-last-mod a:hover {
|
2022-02-12 01:32:17 -06:00
|
|
|
color: var(--color-text-darker);
|
2022-01-27 09:02:11 -06:00
|
|
|
}
|
2021-05-31 07:15:07 -05:00
|
|
|
|
|
|
|
/* For classic mode */
|
2022-02-10 05:22:47 -06:00
|
|
|
#main-menu .locking-disabled, #menu-nb-hamburger .locking-disabled {
|
2022-02-24 14:04:47 -06:00
|
|
|
color: var(--color-text-lighter) !important;
|
|
|
|
background-color: var(--color-background-lighter);
|
2021-05-29 07:31:33 -05:00
|
|
|
box-shadow: inset 0 0 2px 0 rgba(0,0,0,0.2);
|
2022-02-10 05:22:47 -06:00
|
|
|
background: url('images/lc_lock.svg') right top / 24px no-repeat
|
2021-05-29 07:31:33 -05:00
|
|
|
}
|
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
#main-menu .locking-disabled {
|
2021-06-29 03:28:25 -05:00
|
|
|
background-size: 19px;
|
|
|
|
background-position-y: 3px;
|
|
|
|
}
|
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
#main-menu .locking-disabled:hover, #menu-nb-hamburger .locking-disabled:hover {
|
2022-02-24 14:04:47 -06:00
|
|
|
background-color: var(--color-background-lighter);
|
2021-06-28 09:55:14 -05:00
|
|
|
background-position: right bottom !important;
|
2021-05-29 07:31:33 -05:00
|
|
|
}
|
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
#main-menu .locking-disabled:hover {
|
2021-06-29 03:28:25 -05:00
|
|
|
background-position-y: -17px !important;
|
|
|
|
}
|
|
|
|
|
2021-06-28 09:55:14 -05:00
|
|
|
/* For notebook bar mode and sidebar*/
|
2022-02-10 05:22:47 -06:00
|
|
|
.locking-disabled:not(.mobile-wizard) img.unobutton, #toolbar-up .locking-disabled .w2ui-tb-image.w2ui-icon {
|
|
|
|
background: url('images/lc_lock.svg') center top / 24px no-repeat !important;
|
2021-05-31 07:15:07 -05:00
|
|
|
width: 24px !important;
|
|
|
|
padding-left: 24px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2021-06-28 09:55:14 -05:00
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
.locking-disabled:hover img.unobutton, #toolbar-up .locking-disabled .w2ui-tb-image.w2ui-icon:hover {
|
2021-06-02 12:34:12 -05:00
|
|
|
background-position: bottom !important;
|
2021-05-31 07:15:07 -05:00
|
|
|
}
|
2021-06-28 09:55:14 -05:00
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
.locking-disabled > .notebookbar.has-label img.unobutton {
|
2021-05-31 07:15:07 -05:00
|
|
|
background-size: 32px;
|
|
|
|
padding-left: 32px;
|
2021-05-29 07:31:33 -05:00
|
|
|
}
|
|
|
|
/* For mobile mode */
|
2022-02-10 05:22:47 -06:00
|
|
|
#mobile-wizard .locking-overlay {
|
2021-05-29 07:31:33 -05:00
|
|
|
position: relative;
|
2021-06-29 04:03:27 -05:00
|
|
|
width: 20px;
|
2021-06-29 03:28:25 -05:00
|
|
|
height: 20px;
|
|
|
|
right: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
z-index: 2;
|
2022-03-08 13:15:52 -06:00
|
|
|
border-radius: var(--border-radius);
|
2021-06-29 03:28:25 -05:00
|
|
|
text-align: right;
|
|
|
|
margin-right: 4%;
|
2021-06-02 12:34:12 -05:00
|
|
|
overflow: hidden;
|
2021-05-29 07:31:33 -05:00
|
|
|
}
|
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
#mobile-wizard:not(.menuwizard) .locking-overlay {
|
2021-06-29 05:17:42 -05:00
|
|
|
top: -38px;
|
2022-03-13 17:16:46 -05:00
|
|
|
background: var(--color-background-lighter);
|
2021-06-29 05:17:42 -05:00
|
|
|
left: -8px;
|
|
|
|
box-shadow: 0 0 1px 2px #00000025;
|
|
|
|
}
|
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
#mobile-wizard:not(.menuwizard) button ~ .locking-overlay {
|
2021-06-29 06:26:39 -05:00
|
|
|
/* targetting primary buttons on mobile e.g.: master slide*/
|
|
|
|
margin: auto;
|
|
|
|
padding-right: 77%;
|
|
|
|
background-color: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
filter: brightness(4);
|
|
|
|
}
|
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
#mobile-wizard:not(.menuwizard) .locking-overlay-lock {
|
2021-06-29 05:17:42 -05:00
|
|
|
filter: brightness(0.8) contrast(1.8);
|
|
|
|
}
|
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
#mobile-wizard.menuwizard .locking-overlay-lock {
|
2021-06-29 03:28:25 -05:00
|
|
|
width: 20px;
|
2021-06-02 12:34:12 -05:00
|
|
|
filter: brightness(0.8) contrast(1.8);
|
|
|
|
-webkit-animation-iteration-count: 1;
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
animation-direction: normal;
|
|
|
|
-webkit-animation-play-state: running; /* Safari 4.0 - 8.0 */
|
|
|
|
animation-play-state: running;
|
|
|
|
-webkit-animation-name: up-n-down-anim;
|
|
|
|
animation-name: up-n-down-anim;
|
|
|
|
-webkit-animation-duration: 2s;
|
|
|
|
animation-duration: 2s;
|
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
}
|
|
|
|
@keyframes up-n-down-anim{
|
|
|
|
0%{margin-top: 0;}
|
2021-06-29 03:28:25 -05:00
|
|
|
50%{margin-top: -20px;}
|
2021-06-02 12:34:12 -05:00
|
|
|
100%{margin-top: 0;}
|
|
|
|
}
|
|
|
|
@-webkit-keyframes up-n-down-anim{
|
|
|
|
0%{margin-top: 0;}
|
2021-06-29 03:28:25 -05:00
|
|
|
50%{margin-top: -20px;}
|
2021-06-02 12:34:12 -05:00
|
|
|
100%{margin-top: 0;}
|
|
|
|
}
|
2021-06-28 09:55:14 -05:00
|
|
|
|
2022-02-10 05:22:47 -06:00
|
|
|
.sidebar .locking-overlay {
|
2021-06-02 12:34:12 -05:00
|
|
|
height: 22px;
|
|
|
|
overflow: hidden;
|
|
|
|
float: left;
|
2021-05-29 07:31:33 -05:00
|
|
|
position: relative;
|
2021-06-02 12:34:12 -05:00
|
|
|
right: -7px;
|
|
|
|
box-shadow: 0 0 1px 1px #0003;
|
|
|
|
border-radius: 12px;
|
|
|
|
}
|
2022-02-10 05:22:47 -06:00
|
|
|
.sidebar .locking-overlay-lock {
|
2021-06-02 12:34:12 -05:00
|
|
|
width: 20px;
|
2022-03-13 17:16:46 -05:00
|
|
|
background-color: var(--color-background-lighter);
|
2021-06-02 12:34:12 -05:00
|
|
|
padding: 1px;
|
|
|
|
}
|
2022-02-10 05:22:47 -06:00
|
|
|
.sidebar .locking-disabled:hover .locking-overlay-lock {
|
2021-06-02 12:34:12 -05:00
|
|
|
margin-top: -20px;
|
2021-05-29 07:31:33 -05:00
|
|
|
}
|
2022-02-10 05:22:47 -06:00
|
|
|
.sidebar .locking-disabled button:hover ~ .locking-overlay {
|
2022-03-13 17:16:46 -05:00
|
|
|
box-shadow: 0 0 4px 0 var(--color-primary-darker);
|
2021-09-13 15:02:43 -05:00
|
|
|
}
|
|
|
|
.restricted-item {
|
|
|
|
display: none !important;
|
2021-11-03 06:49:45 -05:00
|
|
|
}
|