Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions umap/static/umap/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ button.flat,
width: initial;
display: initial;
line-height: inherit;
color: var(--text-color);
}
button.flat:hover,
[type="button"].flat:hover,
Expand Down
11 changes: 11 additions & 0 deletions umap/static/umap/css/contextmenu.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.umap-contextmenu {
background-color: var(--background-color);
padding: calc(var(--box-padding) / 2) var(--box-padding);
position: absolute;
z-index: var(--zindex-contextmenu);
border-radius: var(--border-radius);
box-shadow: var(--block-shadow);
}
.umap-contextmenu li + li {
margin-top: var(--text-margin);
}
4 changes: 4 additions & 0 deletions umap/static/umap/css/icon.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@
.icon-upload {
background-position: -144px -97px;
}
.icon-download {
transform: rotate(180deg);
background-position: -146px -95px;
}
.icon-zoom {
background-position: -1px -49px;
}
Expand Down
6 changes: 4 additions & 2 deletions umap/static/umap/css/panel.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
z-index: var(--zindex-panels);
background-color: var(--background-color);
color: var(--text-color);
opacity: 0.98;
cursor: initial;
border-radius: 5px;
border: 1px solid var(--color-lightGray);
Expand All @@ -27,7 +26,7 @@
.panel.full.on {
visibility: visible;
right: calc(var(--panel-gutter) * 2 + var(--control-size));
left: var(--panel-gutter);
left: calc(var(--panel-gutter) * 2 + var(--control-size));
height: initial;
max-height: initial;
}
Expand Down Expand Up @@ -78,6 +77,9 @@
right: calc(var(--panel-gutter) * 2 + var(--control-size));
visibility: visible;
}
.panel-left-on .panel.full {
left: calc(var(--panel-gutter) * 3 + var(--control-size) + var(--panel-width));
}
}
@media all and (orientation:portrait) {
.panel {
Expand Down
87 changes: 87 additions & 0 deletions umap/static/umap/css/tableeditor.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
.umap-table-editor {
width: 100%;
overflow-x: auto;
}
.umap-table-editor table {
white-space: nowrap;
table-layout: fixed;
border-collapse: collapse;
border-bottom: 1px solid black;
border-top: 1px solid black;
min-width: 100%;
}
.umap-table-editor thead {
text-align: center;
height: 48px;
line-height: 48px;
background-color: #2c3133;
}
.umap-table-editor thead tr {
border-bottom: 3px solid var(--color-accent);
}
.umap-table-editor thead th {
border-left: 1px solid #0b0c0c;
}
.umap-table-editor .tbody tr input {
margin: 0;
border-right: none;
display: inline;
}
.umap-table-editor thead i {
display: none;
width: 50%;
cursor: pointer;
padding: 10px 0;
height: 24px;
line-height: 24px;
}
.umap-table-editor thead i:before {
width: 40px;
}
.umap-table-editor thead th:hover i {
display: inline-block;
}
.umap-table-editor thead th i:hover {
background-color: #33393b;
}
.umap-table-editor thead th:hover span {
display: none;
}
.umap-table-editor td {
overflow: hidden;
}
.umap-table-editor td {
border: 1px solid #222;
}
.umap-table-editor td:focus {
outline: 1px solid var(--color-accent);
}
.umap-table-editor th, .umap-table-editor td {
padding: 10px;
vertical-align: top;
}
.umap-table-editor tr:nth-child(even) {
background-color: var(--color-mediumGray);
}
.umap-table-editor tr {
border-left: 1px solid black;
border-right: 1px solid black;
}
.umap-table-editor .formbox,
.umap-table-editor input {
margin: 0;
}
.umap-table-editor input {
border-radius: initial;
}
.umap-table-editor th button {
transform: rotate(90deg);
font-size: 1.25rem;
display: inline-block;
vertical-align: middle;
margin-left: 1rem;
font-weight: bold;
}
.umap-table-editor th button:hover {
text-decoration: none;
}
6 changes: 3 additions & 3 deletions umap/static/umap/css/tooltip.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
padding: 5px 10px;
width: auto;
position: absolute;
box-shadow: 0 1px 7px #999999;
box-shadow: var(--block-shadow);
display: none;
background-color: rgba(40, 40, 40, 0.8);
background-color: rgba(40, 40, 40, 0.9);
color: #eeeeec;
font-size: 0.8em;
border-radius: 2px;
z-index: calc(var(--zindex-panels) + 1);
z-index: var(--zindex-tooltip);
font-weight: normal;
max-width: 300px;
}
Expand Down
4 changes: 4 additions & 0 deletions umap/static/umap/img/16-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion umap/static/umap/img/source/16-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading