From e93339769fbaa44b186bf3dbbdc3b34366b9c5b8 Mon Sep 17 00:00:00 2001 From: yflory Date: Tue, 10 Mar 2020 16:43:19 +0100 Subject: [PATCH] Fix tags UI --- customize.dist/src/less2/include/tokenfield.less | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/customize.dist/src/less2/include/tokenfield.less b/customize.dist/src/less2/include/tokenfield.less index 4445224e7..358f0d18b 100644 --- a/customize.dist/src/less2/include/tokenfield.less +++ b/customize.dist/src/less2/include/tokenfield.less @@ -1,3 +1,4 @@ +@import (reference) "./colortheme-all.less"; @import (reference) "./tools.less"; .tokenfield_main () { @@ -21,22 +22,19 @@ width: ~"calc(100% - 20px)"; .token { box-sizing: border-box; - border-radius: 3px; display: inline-flex; align-items: center; - border: 1px solid #d9d9d9; - background-color: #ededed; + background-color: rgba(0, 0, 0, 0.1); white-space: nowrap; margin: 2px 0; margin-right: 5px; height: 24px; vertical-align: middle; cursor: default; - - color: #222; + color: @cryptpad_text_col; &:hover { - border-color: #b9b9b9; + background-color: rgba(0, 0, 0, 0.2); } &.invalid { background: none; @@ -57,6 +55,7 @@ vertical-align: middle; } .close { + opacity: 1; font-family: Arial; display: inline-block; line-height: 1.49em;