2020-07-14 07:09:06 -05:00
|
|
|
:root {
|
|
|
|
/*All used fonts (except w2ui)
|
|
|
|
----------------------------------*/
|
|
|
|
--loleaflet-font: 'Segoe UI', Tahoma, Arial, Helvetica, sans-serif;
|
|
|
|
/*investigate what are the drawback in consisntly use --loleaflet-fonts
|
|
|
|
for vex, jquery-ui and perhaps mobile*/
|
|
|
|
--mobile-font: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
|
|
|
|
--vex-font: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
|
|
|
|
--jquery-ui-font: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
|
|
|
|
|
|
|
|
--docs-font: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
|
|
--docs--pre-font: 'Consolas', 'Menlo', 'Lucida Console', 'Courier New', monospace;
|
|
|
|
|
|
|
|
/*LibreOffice Colors: https://wiki.documentfoundation.org/Marketing/Branding#Colors
|
|
|
|
----------------------------------[to do]*/
|
2020-08-20 05:35:10 -05:00
|
|
|
--blue1-txt-primary-color: 3, 105, 163;
|
|
|
|
--green0-txt-primary-color: 16, 104, 2; /*green1 lacks contrast against white*/
|
|
|
|
--orange1-txt-primary-color: 163, 62, 3;
|
2020-07-24 02:56:19 -05:00
|
|
|
|
2020-07-14 07:09:06 -05:00
|
|
|
--gray-light-txt--color: #696969;
|
2020-07-24 02:56:19 -05:00
|
|
|
--gray-bg-color: #EFEFEF;
|
2020-07-14 07:09:06 -05:00
|
|
|
}
|
2020-10-06 08:01:54 -05:00
|
|
|
/* clip technique: hide visually but keep it available to screen readers */
|
|
|
|
.visuallyhidden {
|
|
|
|
border: 0;
|
|
|
|
clip: rect(0 0 0 0);
|
|
|
|
height: 1px;
|
|
|
|
margin: -1px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
}
|
2015-12-15 07:33:53 -06:00
|
|
|
#document-container {
|
2016-05-18 17:33:46 -05:00
|
|
|
border-top: 1px solid #B6B6B6;
|
2015-12-15 07:33:53 -06:00
|
|
|
background: #DFDFDF;
|
|
|
|
position: absolute;
|
2018-11-13 09:13:11 -06:00
|
|
|
top: 77px;
|
2016-05-18 17:33:46 -05:00
|
|
|
bottom: 33px;
|
2015-12-15 07:33:53 -06:00
|
|
|
right: 0px;
|
|
|
|
left: 0px;
|
|
|
|
}
|
2020-06-19 09:32:05 -05:00
|
|
|
#document-container.sidebar-closed {
|
|
|
|
right: 0px !important;
|
|
|
|
}
|
|
|
|
|
2015-12-15 07:33:53 -06:00
|
|
|
|
2018-12-10 17:26:17 -06:00
|
|
|
#document-container.tablet {
|
2019-01-29 09:43:23 -06:00
|
|
|
top: 36px;
|
2018-12-10 17:26:17 -06:00
|
|
|
}
|
|
|
|
|
2017-02-17 08:24:11 -06:00
|
|
|
#document-container.readonly {
|
2019-01-29 13:51:16 -06:00
|
|
|
top: 36px;
|
2017-02-17 08:24:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#toolbar-wrapper.readonly {
|
2019-01-29 13:51:16 -06:00
|
|
|
display: none;
|
2017-02-17 08:24:11 -06:00
|
|
|
}
|
|
|
|
|
2018-12-17 05:54:11 -06:00
|
|
|
#sidebar-dock-wrapper.tablet {
|
|
|
|
top: 41px;
|
|
|
|
}
|
|
|
|
|
2015-12-15 07:33:53 -06:00
|
|
|
#map {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
2017-01-16 08:47:34 -06:00
|
|
|
bottom: 0px;
|
2015-12-15 07:33:53 -06:00
|
|
|
left: 0px;
|
2017-01-16 08:47:34 -06:00
|
|
|
right: 0px;
|
2015-12-15 07:33:53 -06:00
|
|
|
z-index: 10;
|
2019-12-19 05:37:44 -06:00
|
|
|
cursor: auto;
|
|
|
|
}
|
2020-07-28 09:01:07 -05:00
|
|
|
|
|
|
|
.leaflet-progress-layer
|
|
|
|
{
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
2017-01-16 08:47:34 -06:00
|
|
|
.scroll-container .mCSB_scrollTools.mCSB_1_scrollbar {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
2020-07-09 06:20:27 -05:00
|
|
|
.bucket-cursor {
|
2020-09-10 08:05:17 -05:00
|
|
|
cursor: url('images/cursors/fill.png') 4 9, auto !important;/*setting coordinates to align the tip of the bucket icon */
|
2020-07-09 06:20:27 -05:00
|
|
|
}
|
2017-06-13 07:43:00 -05:00
|
|
|
.loleaflet-scrollbar-show {
|
2019-01-29 13:51:16 -06:00
|
|
|
opacity: 1 !important;
|
2020-09-03 09:41:01 -05:00
|
|
|
filter: 'alpha(opacity=100)' !important;
|
|
|
|
-ms-filter: 'alpha(opacity=100)' !important;
|
2017-06-13 07:43:00 -05:00
|
|
|
}
|
|
|
|
|
2019-08-14 04:13:40 -05:00
|
|
|
.table-column-resize-marker {
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-top: 0px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
background-image: url('images/table-column-resize-marker.svg');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-repeat: no-repeat;
|
2019-08-17 20:22:21 -05:00
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-column-resize-marker:hover {
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-top: 0px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
background-image: url('images/table-column-resize-marker-hover.svg');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
cursor: col-resize;
|
2019-08-14 04:13:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.table-row-resize-marker {
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-top: 0px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
background-image: url('images/table-row-resize-marker.svg');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-repeat: no-repeat;
|
2019-08-17 20:22:21 -05:00
|
|
|
cursor: row-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-row-resize-marker:hover {
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-top: 0px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
background-image: url('images/table-row-resize-marker-hover.svg');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
cursor: row-resize;
|
2019-08-14 04:13:40 -05:00
|
|
|
}
|
|
|
|
|
2020-01-20 08:12:47 -06:00
|
|
|
.table-row-or-column-select-marker {
|
|
|
|
margin: 0px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
background-image: url('images/table-row-or-column-select-marker.svg');
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
2019-09-29 16:41:28 -05:00
|
|
|
.table-move-marker {
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-top: 0px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
background-image: url('images/table-move-marker.svg');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
|
2016-04-19 03:09:44 -05:00
|
|
|
body {
|
2019-01-29 13:51:16 -06:00
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
overscroll-behavior-y: none; /* disable the pull to reload gesture */
|
|
|
|
background: #ffffff;
|
|
|
|
touch-action: none;
|
2020-11-03 05:06:33 -06:00
|
|
|
line-height: normal;
|
2016-04-19 03:09:44 -05:00
|
|
|
}
|
2016-05-20 07:49:16 -05:00
|
|
|
|
2017-01-11 00:52:03 -06:00
|
|
|
#presentation-controls-wrapper {
|
2019-01-29 13:51:16 -06:00
|
|
|
background: #dfdfdf;
|
|
|
|
position: absolute;
|
|
|
|
top: 77px;
|
|
|
|
left: 0px;
|
|
|
|
bottom: 66px;
|
|
|
|
max-width: 218px;
|
|
|
|
border-top: 1px solid #b6b6b6;
|
|
|
|
display: block;
|
2017-01-11 01:22:39 -06:00
|
|
|
}
|
|
|
|
|
2017-03-20 03:28:33 -05:00
|
|
|
#presentation-controls-wrapper.drawing {
|
2020-07-02 07:29:11 -05:00
|
|
|
bottom: 33px; /* Hide the presentation toolbar (insert slide etc.) for doctype = drawing */
|
2017-03-20 03:28:33 -05:00
|
|
|
}
|
|
|
|
|
2017-02-17 09:23:54 -06:00
|
|
|
#presentation-controls-wrapper.readonly {
|
2019-01-29 13:51:16 -06:00
|
|
|
top: 36px;
|
2017-02-17 09:23:54 -06:00
|
|
|
}
|
|
|
|
|
2018-08-12 21:05:45 -05:00
|
|
|
#sidebar-dock-wrapper {
|
2019-03-25 14:19:09 -05:00
|
|
|
display: none;
|
2019-02-02 09:11:02 -06:00
|
|
|
background: #fff;
|
|
|
|
position: absolute;
|
|
|
|
top: 77px;
|
|
|
|
right: 0px;
|
2020-07-10 07:06:27 -05:00
|
|
|
bottom: 72px;
|
2019-02-02 09:11:02 -06:00
|
|
|
border-top: 1px solid #b6b6b6;
|
|
|
|
border-left: 1px solid #b6b6b6;
|
|
|
|
overflow: hidden;
|
2019-02-07 08:17:21 -06:00
|
|
|
z-index: 990;
|
2018-08-12 21:05:45 -05:00
|
|
|
}
|
|
|
|
|
2018-11-19 16:03:52 -06:00
|
|
|
#sidebar-panel {
|
2019-02-02 09:11:02 -06:00
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
position: relative;
|
2020-05-29 08:25:03 -05:00
|
|
|
width: auto;
|
2019-02-02 09:11:02 -06:00
|
|
|
height: 100%;
|
|
|
|
overflow-x: hidden;
|
2020-07-10 07:06:27 -05:00
|
|
|
overflow-y: auto;
|
2019-02-02 09:11:02 -06:00
|
|
|
z-index: 1200;
|
2018-11-19 16:03:52 -06:00
|
|
|
}
|
|
|
|
|
2018-04-14 10:14:53 -05:00
|
|
|
#toolbar-wrapper {
|
2019-01-29 13:51:16 -06:00
|
|
|
position: relative;
|
|
|
|
table-layout: fixed;
|
|
|
|
border-collapse: collapse;
|
2018-11-13 09:13:11 -06:00
|
|
|
width: 100%;
|
2020-07-14 07:09:06 -05:00
|
|
|
border-top: none;
|
2018-04-14 10:14:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#toolbar-logo {
|
2019-01-29 13:51:16 -06:00
|
|
|
width: 0;
|
2018-04-14 10:14:53 -05:00
|
|
|
}
|
|
|
|
|
2020-03-19 09:27:36 -05:00
|
|
|
/* Hide hamburger except on mobile phones */
|
2018-04-14 10:54:22 -05:00
|
|
|
#toolbar-hamburger {
|
2019-01-29 13:51:16 -06:00
|
|
|
width: 0;
|
2018-04-14 10:54:22 -05:00
|
|
|
}
|
|
|
|
|
2018-11-30 05:17:48 -06:00
|
|
|
#mobile-edit-button {
|
2019-01-29 13:51:16 -06:00
|
|
|
position: absolute;
|
|
|
|
width: 56px;
|
|
|
|
height: 56px;
|
|
|
|
right: 16px;
|
|
|
|
bottom: 16px;
|
|
|
|
background-color: #0b87e7;
|
|
|
|
border-radius: 50%;
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
2019-10-17 10:09:33 -05:00
|
|
|
z-index: 1001;
|
2020-07-03 01:40:55 -05:00
|
|
|
transform: scale(1);
|
|
|
|
transition: transform 0.5s;
|
2018-11-30 05:17:48 -06:00
|
|
|
}
|
|
|
|
|
2020-02-07 09:54:37 -06:00
|
|
|
#mobile-edit-button.impress {
|
|
|
|
bottom: 70px;
|
|
|
|
}
|
|
|
|
|
2018-11-30 05:17:48 -06:00
|
|
|
#mobile-edit-button-image {
|
2019-01-29 13:51:16 -06:00
|
|
|
position: relative;
|
|
|
|
left: 16px;
|
|
|
|
top: 16px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
background: url('images/baseline-edit-24px.svg') no-repeat center !important;
|
2020-07-03 01:40:55 -05:00
|
|
|
transform: rotate(0deg);
|
|
|
|
transition: transform 0.5s;
|
2018-11-30 05:17:48 -06:00
|
|
|
}
|
2020-02-18 10:33:24 -06:00
|
|
|
#mobile-edit-button:active{
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
2020-07-02 15:45:48 -05:00
|
|
|
#mobile-edit-button:active > #mobile-edit-button-image {
|
2020-02-18 10:33:24 -06:00
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
2019-03-12 10:40:55 -05:00
|
|
|
|
2016-05-20 07:49:16 -05:00
|
|
|
.loleaflet-font {
|
2020-07-14 07:09:06 -05:00
|
|
|
font-family: var(--loleaflet-font) !important;
|
2019-01-29 13:51:16 -06:00
|
|
|
font-size: 12px !important;
|
|
|
|
font-weight: normal !important;
|
2016-11-11 13:24:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-character {
|
|
|
|
table-layout: fixed;
|
2020-09-03 09:41:01 -05:00
|
|
|
font: 17px/1.5 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
2016-11-11 13:24:48 -06:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-character td {
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
|
2019-01-18 10:14:14 -06:00
|
|
|
.annotation-button {
|
2016-11-11 13:24:48 -06:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2016-11-24 12:00:41 -06:00
|
|
|
|
2020-06-26 02:04:35 -05:00
|
|
|
.annotation-marker {
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-top: 0px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
background-image: url('images/note.svg');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:00:41 -06:00
|
|
|
.loleaflet-scrolled {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2016-12-08 10:28:22 -06:00
|
|
|
|
2018-09-17 16:35:12 -05:00
|
|
|
.loleaflet-mobile-container {
|
|
|
|
top: 30px;
|
|
|
|
margin: 0;
|
|
|
|
width: 1px;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2018-10-09 20:54:44 -05:00
|
|
|
.loleaflet-context-down {
|
2020-09-03 09:41:01 -05:00
|
|
|
border: 1px solid #aaaaaa;
|
|
|
|
background-color: #dddddd;
|
2018-08-26 10:55:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-mobile-input {
|
2018-09-17 16:35:12 -05:00
|
|
|
width: 1px;
|
|
|
|
padding: 0px;
|
|
|
|
border: 0px;
|
2018-08-26 10:55:35 -05:00
|
|
|
}
|
|
|
|
|
2016-12-08 10:28:22 -06:00
|
|
|
/* Important to override context-menu-icon's font-family here otherwise, jquery-contextmenu.css
|
|
|
|
* will try to load its own font file which is not available in dist/ */
|
|
|
|
.context-menu-icon::before {
|
2020-07-14 07:09:06 -05:00
|
|
|
font-family: var(--loleaflet-font) !important;
|
2019-12-03 04:40:02 -06:00
|
|
|
content: '\2713';
|
|
|
|
color: #000 !important;
|
2016-12-08 10:28:22 -06:00
|
|
|
}
|
|
|
|
.context-menu-icon-lo-checkmark:before {
|
|
|
|
content: '\2713';
|
|
|
|
}
|
2017-02-05 15:24:05 -06:00
|
|
|
|
2018-10-28 19:59:32 -05:00
|
|
|
.context-menu-hover
|
|
|
|
{
|
2020-09-03 09:41:01 -05:00
|
|
|
background-color: #0b87e7 !important;
|
|
|
|
color: #fff !important;
|
2018-10-28 19:59:32 -05:00
|
|
|
}
|
|
|
|
|
2017-02-05 15:24:05 -06:00
|
|
|
.loleaflet-annotation {
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
2018-02-10 12:20:52 -06:00
|
|
|
user-select: text;
|
|
|
|
-moz-user-select: text;
|
|
|
|
-webkit-user-select: text;
|
|
|
|
-ms-user-select: text;
|
2017-02-05 15:24:05 -06:00
|
|
|
}
|
|
|
|
|
2017-04-14 01:16:12 -05:00
|
|
|
.loleaflet-annotation-content-wrapper, .loleaflet-annotation-redline-content-wrapper {
|
2017-03-01 15:40:57 -06:00
|
|
|
padding: 8px;
|
2020-07-14 07:09:06 -05:00
|
|
|
font-family: var(--loleaflet-font) !important;
|
2017-03-01 15:40:57 -06:00
|
|
|
font-size: 13px;
|
2017-02-05 15:24:05 -06:00
|
|
|
text-align: left;
|
2020-07-24 02:56:19 -05:00
|
|
|
background-color: var(--gray-bg-color);
|
2017-04-19 04:51:46 -05:00
|
|
|
box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
|
2017-03-07 19:35:50 -06:00
|
|
|
color: #222;
|
2017-03-01 15:40:57 -06:00
|
|
|
border: none;
|
|
|
|
border-radius: 2px;
|
2017-04-25 03:02:51 -05:00
|
|
|
width: 240px;
|
2017-04-24 09:50:46 -05:00
|
|
|
}
|
|
|
|
|
2017-02-11 16:04:38 -06:00
|
|
|
.loleaflet-annotation-content {
|
2020-09-09 04:02:15 -05:00
|
|
|
margin: 3px;
|
2017-02-05 15:24:05 -06:00
|
|
|
line-height: 1.4;
|
|
|
|
}
|
2017-02-11 16:04:38 -06:00
|
|
|
|
2017-04-24 09:51:34 -05:00
|
|
|
.loleaflet-dont-break {
|
2020-09-03 09:41:01 -05:00
|
|
|
/* These are technically the same, but use both */
|
|
|
|
overflow-wrap: break-word;
|
2017-04-24 09:51:34 -05:00
|
|
|
word-wrap: break-word;
|
|
|
|
|
2017-04-27 00:39:55 -05:00
|
|
|
/* Don't eat new lines */
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
2017-04-24 09:51:34 -05:00
|
|
|
/* Adds a hyphen where the word breaks, if supported (No Blink) */
|
|
|
|
-ms-hyphens: auto;
|
|
|
|
-moz-hyphens: auto;
|
|
|
|
-webkit-hyphens: auto;
|
|
|
|
hyphens: auto;
|
|
|
|
}
|
|
|
|
|
2017-03-01 15:40:57 -06:00
|
|
|
.loleaflet-annotation-content-author {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 2px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
|
2019-05-14 09:25:43 -05:00
|
|
|
.loleaflet-annotation-content-resolved {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
2017-02-14 14:37:16 -06:00
|
|
|
.loleaflet-annotation-edit {
|
2020-09-09 04:02:15 -05:00
|
|
|
margin: 3px;
|
2017-02-14 14:37:16 -06:00
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
|
2017-02-11 16:04:38 -06:00
|
|
|
.loleaflet-annotation-textarea {
|
2020-07-14 07:09:06 -05:00
|
|
|
font-family: var(--loleaflet-font) !important;
|
2017-03-01 15:40:57 -06:00
|
|
|
font-size: 13px;
|
2017-02-11 16:04:38 -06:00
|
|
|
border: 1px solid #c8c8c8;
|
2017-03-01 15:40:57 -06:00
|
|
|
background-color: white;
|
|
|
|
overflow-x: hidden;
|
2017-04-24 09:04:57 -05:00
|
|
|
height: 50px;
|
2017-03-01 15:40:57 -06:00
|
|
|
width: 95%;
|
2017-02-11 16:04:38 -06:00
|
|
|
}
|
2017-02-24 13:19:48 -06:00
|
|
|
|
|
|
|
.loleaflet-div-layer {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
2017-03-01 15:40:57 -06:00
|
|
|
|
|
|
|
.loleaflet-annotation-table {
|
|
|
|
border-spacing: 0;
|
|
|
|
border-collapse: separate;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-annotation-img {
|
|
|
|
max-width: 32px;
|
|
|
|
display: inline-block;
|
2019-12-18 04:57:07 -06:00
|
|
|
border: solid 2px;
|
|
|
|
border-radius: 50%;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
.loleaflet-annotation-img .avatar-img{
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.loleaflet-annotation-img > .avatar-img{
|
|
|
|
display: block;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 32px; /* Width of new image */
|
|
|
|
height: 32px; /* Height of new image */
|
2020-09-03 09:41:01 -05:00
|
|
|
background: url('images/user.svg') center 3px no-repeat;
|
2017-03-01 15:40:57 -06:00
|
|
|
}
|
|
|
|
|
2019-05-16 09:17:29 -05:00
|
|
|
.leaflet-container .leaflet-pane.leaflet-calc-background-pane {
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
2019-01-30 03:48:32 -06:00
|
|
|
.avatar-img {
|
|
|
|
border: solid 2px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
2019-03-11 14:00:31 -05:00
|
|
|
.user-info {
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
overflow: auto;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2017-03-01 15:40:57 -06:00
|
|
|
.loleaflet-annotation-author {
|
|
|
|
padding-left: 10px;
|
2017-04-12 09:57:37 -05:00
|
|
|
padding-right: 10px;
|
2017-03-01 15:40:57 -06:00
|
|
|
vertical-align: top;
|
|
|
|
display: table-cell;
|
2017-04-25 04:13:57 -05:00
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
max-width: 110px;
|
2017-03-01 15:40:57 -06:00
|
|
|
}
|
|
|
|
|
2017-04-12 09:57:37 -05:00
|
|
|
.loleaflet-annotation-menu, .loleaflet-annotation-menu-redline, .loleaflet-redline-accept-button, .loleaflet-redline-reject-button {
|
|
|
|
margin: 0;
|
2020-09-03 09:41:01 -05:00
|
|
|
padding: 0;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2017-04-12 09:57:37 -05:00
|
|
|
vertical-align: top;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
display: inline-block;
|
2017-03-23 07:04:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-redline-accept-button {
|
2020-09-03 09:41:01 -05:00
|
|
|
background: url('images/lc_accepttrackedchanges.svg') no-repeat center !important;
|
2017-03-23 07:04:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-redline-reject-button {
|
2020-09-03 09:41:01 -05:00
|
|
|
background: url('images/lc_rejecttrackedchange.svg') no-repeat center !important;
|
2017-03-23 07:04:35 -05:00
|
|
|
}
|
|
|
|
|
2017-04-12 09:57:37 -05:00
|
|
|
.loleaflet-annotation-menu, .loleaflet-annotation-menu-redline {
|
2018-11-13 03:23:42 -06:00
|
|
|
background: url('images/submenu.svg') no-repeat center/contain !important;
|
2017-04-12 09:57:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-annotation-menu:hover, .loleaflet-annotation-menu-redline:hover, .loleaflet-redline-accept-button:hover, .loleaflet-redline-reject-button:hover {
|
|
|
|
border: 1px solid darkgrey;
|
2017-03-23 07:04:35 -05:00
|
|
|
}
|
|
|
|
|
2017-03-01 15:40:57 -06:00
|
|
|
.loleaflet-annotation-date {
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
2017-04-12 09:57:37 -05:00
|
|
|
.loleaflet-annotation-menubar {
|
2017-03-09 05:41:01 -06:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2017-04-12 09:57:37 -05:00
|
|
|
vertical-align: top;
|
2017-03-09 05:41:01 -06:00
|
|
|
}
|
2020-11-04 08:41:56 -06:00
|
|
|
/*Tooltips
|
|
|
|
----------------------------------*/
|
|
|
|
[data-title]:hover:after {
|
|
|
|
opacity: 1;
|
|
|
|
transition: all 0.1s ease 0.5s;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
[data-title]:after {
|
|
|
|
content: attr(data-title);
|
|
|
|
font-size: 1em !important;
|
|
|
|
bottom: -1.6em;
|
|
|
|
left: 100%;
|
|
|
|
white-space: nowrap;
|
|
|
|
opacity: 0;
|
|
|
|
border-color: #2a2a2a;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
[data-title] {
|
|
|
|
position: relative;
|
|
|
|
}
|
2017-03-09 06:10:53 -06:00
|
|
|
|
|
|
|
.loleaflet-annotation-caption {
|
2020-09-03 09:41:01 -05:00
|
|
|
font-weight: bold;
|
2017-03-09 06:10:53 -06:00
|
|
|
}
|
2017-03-09 20:39:48 -06:00
|
|
|
|
|
|
|
.loleaflet-bar {
|
|
|
|
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
|
|
|
|
border-radius: 4px;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 3px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-bar a,
|
|
|
|
.loleaflet-bar a:hover {
|
|
|
|
background-color: #fff;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-bar a:hover {
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-bar a:first-child {
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-bar a:last-child {
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-bar a.leaflet-disabled {
|
|
|
|
cursor: default;
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
color: #bbb;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-bar a {
|
2020-09-03 09:41:01 -05:00
|
|
|
background-position: 50% 50%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
display: block;
|
2017-03-09 20:39:48 -06:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loleaflet-control-scroll-up,
|
|
|
|
.loleaflet-control-scroll-down {
|
|
|
|
font: bold 18px 'Lucida Console', Monaco, monospace;
|
|
|
|
text-indent: 1px;
|
|
|
|
}
|
2017-08-21 04:47:22 -05:00
|
|
|
|
2018-03-27 08:13:41 -05:00
|
|
|
.lokdialog_container.lokdialog_notitle .ui-dialog-titlebar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-11-05 02:49:54 -06:00
|
|
|
.lokdialog_container.ui-dialog.ui-widget-content {
|
2018-03-12 10:48:29 -05:00
|
|
|
padding: 0px;
|
|
|
|
overflow: visible;
|
2017-08-21 04:47:22 -05:00
|
|
|
width: auto;
|
|
|
|
height: auto;
|
2017-11-09 03:14:49 -06:00
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
2017-11-27 07:42:56 -06:00
|
|
|
z-index: 1105;
|
2017-08-21 04:47:22 -05:00
|
|
|
}
|
2017-11-05 02:49:54 -06:00
|
|
|
|
|
|
|
.lokdialog.ui-dialog-content.ui-widget-content {
|
2018-03-12 10:48:29 -05:00
|
|
|
padding: 0px;
|
2018-10-16 11:51:50 -05:00
|
|
|
overflow: auto;
|
2017-11-05 02:49:54 -06:00
|
|
|
}
|
2017-11-08 22:18:44 -06:00
|
|
|
|
|
|
|
.lokdialog_canvas {
|
2020-09-03 09:41:01 -05:00
|
|
|
cursor: default;
|
|
|
|
display: block; /* required to remove all borders around canvas element */
|
|
|
|
caret-color: transparent; /* firefox shows a caret otherwise on top-left of the canvas */
|
|
|
|
user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-o-user-select: none;
|
2017-11-08 22:18:44 -06:00
|
|
|
}
|
2020-04-29 06:36:05 -05:00
|
|
|
|
2020-08-11 00:56:26 -05:00
|
|
|
.lokblink {
|
2020-09-03 09:41:01 -05:00
|
|
|
animation: lokblink 150ms infinite alternate;
|
2020-08-11 00:56:26 -05:00
|
|
|
}
|
|
|
|
|
2020-08-31 07:35:26 -05:00
|
|
|
@keyframes lokblink {
|
2020-09-09 04:02:15 -05:00
|
|
|
from { opacity: 1; }
|
|
|
|
to { opacity: 0; }
|
2020-08-11 00:56:26 -05:00
|
|
|
}
|
|
|
|
|
2020-04-30 07:34:09 -05:00
|
|
|
.form-field-frame {
|
|
|
|
border: 1px solid;
|
2020-04-29 06:36:05 -05:00
|
|
|
position: absolute;
|
2020-04-30 07:34:09 -05:00
|
|
|
height: 100%;
|
2020-05-07 05:36:00 -05:00
|
|
|
border-radius: 2px;
|
2020-04-30 07:34:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-field-button {
|
|
|
|
background: #FFFFFF;
|
|
|
|
position: absolute;
|
|
|
|
border: 1px solid;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: content-box;
|
|
|
|
padding: 0px;
|
2020-05-07 05:36:00 -05:00
|
|
|
border-radius: 2px;
|
2020-04-30 07:34:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-field-button:hover, .form-field-button:focus {
|
2020-05-01 10:57:38 -05:00
|
|
|
background: #DDDDDD;
|
2020-05-07 08:14:13 -05:00
|
|
|
outline: 0;
|
2020-04-30 07:34:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-field-button-image {
|
|
|
|
margin: 3px;
|
2020-04-29 06:36:05 -05:00
|
|
|
}
|
2020-05-01 10:57:38 -05:00
|
|
|
|
|
|
|
.drop-down-field-list {
|
|
|
|
position: absolute;
|
|
|
|
border: 1px solid;
|
2020-05-07 05:36:00 -05:00
|
|
|
cursor: pointer;
|
2020-05-10 01:37:07 -05:00
|
|
|
background: #ffffff;
|
2020-05-01 10:57:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.drop-down-field-list-item {
|
2020-05-11 10:18:50 -05:00
|
|
|
width: calc(100% - 10px);
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
2020-05-01 10:57:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.drop-down-field-list-item.selected {
|
|
|
|
background: #99CCFF;
|
|
|
|
}
|
2020-05-07 05:36:00 -05:00
|
|
|
.drop-down-field-list-item:hover {
|
|
|
|
background: #0b87e7;
|
|
|
|
}
|
2020-08-10 03:10:30 -05:00
|
|
|
|
|
|
|
.word-wrap-for-vex-dialog {
|
|
|
|
overflow-wrap: break-word;
|
2020-08-11 08:39:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.hyperlink-popup .leaflet-popup-content {
|
|
|
|
white-space: nowrap;
|
2020-09-03 09:41:01 -05:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-08-20 05:35:10 -05:00
|
|
|
}
|