libreoffice-online/loleaflet/dist/spreadsheet.css

169 lines
3.1 KiB
CSS

.spreadsheet-document {
border-top: 1px solid #B6B6B6 !important;
top: 98px !important;
left: 50px !important;
bottom: 65px !important;
}
.spreadsheet-tab {
margin: 0;
padding: 0;
left: 132px;
right: 0;
bottom: 33px;
position: absolute;
cursor: pointer;
height: 32px;
overflow: hidden;
white-space: nowrap;
background-color: #efefef;
}
.spreadsheet-tab-scroll {
width: 100%;
height: 100%;
overflow: auto;
padding-bottom: 20px; /* to hide the scroolbar */
margin-left: 6px;
}
.spreadsheet-context-menu {
margin: 0px;
margin-top: 2px;
margin-right: 3px;
padding-left: 9px;
padding-right: 9px;
padding-top: 3px;
padding-bottom: 3px;
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
display: inline-block;
border: 1px solid darkgrey;
background-color: lightgrey;
color: black;
}
.spreadsheet-context-menu-selected {
background: white !important;
color: black !important;
margin-top: 0px;
padding-top: 6px;
border: 1px solid #dfdfdf;
border-top: 0px;
}
.spreadsheet-context-menu.context-menu-disabled {
color: grey;
}
.spreadsheet-header-corner {
border: 1px solid darkgrey;
background-color: lightgrey;
cursor: pointer;
position: absolute;
padding: 0px;
margin: 0px;
left: 0px;
top: 78px;
width: 48px;
height: 19px;
}
.spreadsheet-header-columns-container {
border: 1px solid darkgrey;
background-color: lightgrey;
position: absolute;
display: inline-block;
white-space: nowrap;
left: 49px;
top: 78px;
right: 0;
height: 19px;
overflow: hidden;
}
.spreadsheet-header-columns {
display: inline-block;
white-space: nowrap;
width: 100%;
height: 100%;
border-spacing: 0px !important;
position: relative;
margin: 0px;
padding: 0px;
}
.spreadsheet-header-column {
border-right: 1px solid darkgrey;
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
display: inline-block;
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;
padding: 0px;
padding-top: 1px;
margin: 0px;
height: 100%;
cursor: pointer;
/* Make the text unselectable for all browsers */
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.spreadsheet-header-column:hover {
background-color: #DDD;
}
.spreadsheet-header-rows-container {
border: 1px solid darkgrey;
background-color: lightgrey;
position: absolute;
left: 0;
top: 98px;
width: 48px;
bottom: 65px;
overflow: hidden;
}
.spreadsheet-header-rows {
width: 100%;
height: 100%;
border-spacing: 0px !important;
position: relative;
margin: 0px;
padding: 0px;
}
.spreadsheet-header-row {
border-bottom: 1px solid darkgrey;
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
text-overflow: ellipsis;
text-align: center;
white-space: nowrap;
padding: 0px;
margin: 0px;
height: 100%;
cursor: pointer;
/* Make the text unselectable for all browsers */
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.spreadsheet-header-row:hover {
background-color: #DDD;
}