[#181] add disabling of popovers on small screens, update todos and operation CSS

This commit is contained in:
Robin Scholtes 2023-04-23 11:20:01 +12:00
parent d0e8863555
commit a252c34968
4 changed files with 31 additions and 17 deletions

View file

@ -7,7 +7,6 @@
*/
.operation {
cursor: grab;
padding: 10px;
list-style-type: none;
position: relative;
@ -18,6 +17,22 @@
border-right: none;
}
@media only screen and (min-width: 768px){
.operation {
cursor: grab;
}
}
.op-icon {
float: right;
font-size: 18px;
cursor: pointer;
}
.op-icon.remove-icon {
color: #f44336;
}
.op-title {
font-weight: var(--op-title-font-weight);
}
@ -229,13 +244,6 @@ input.toggle-string {
word-break: break-all;
}
.op-icon {
float: right;
color: #f44336;
font-size: 18px;
cursor: pointer;
}
.recip-icons {
position: absolute;
top: 13px;
@ -316,9 +324,3 @@ input.toggle-string {
color: var(--disabled-font-colour) !important;
background-color: var(--disabled-border-colour) !important;
}