aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/StyleProvider.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/StyleProvider.scss')
-rw-r--r--src/client/views/StyleProvider.scss61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/client/views/StyleProvider.scss b/src/client/views/StyleProvider.scss
index ce00f6101..1d41697f5 100644
--- a/src/client/views/StyleProvider.scss
+++ b/src/client/views/StyleProvider.scss
@@ -53,3 +53,64 @@
.styleProvider-treeView-icon {
opacity: 0;
}
+
+.keywords-container {
+ display: flex;
+ flex-wrap: wrap;
+ flex-direction: column;
+ border: 1px solid;
+ border-radius: 4px;
+}
+
+.keywords-list {
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.keyword {
+ padding: 5px 5px;
+ background-color: lightblue;
+ border: 1px solid black;
+ border-radius: 5px;
+ white-space: nowrap;
+ display: flex;
+ align-items: center;
+}
+
+.keyword-suggestions-box {
+ display: flex;
+ flex-wrap: wrap;
+ margin: auto;
+ align-self: center;
+ width: 90%;
+ border: 1px solid black;
+ border-radius: 2px;
+ margin-top: 8px;
+}
+
+.keyword-suggestion {
+ cursor: pointer;
+ padding: 1px 1px;
+ margin: 2px 2px;
+ background-color: lightblue;
+ border: 1px solid black;
+ border-radius: 5px;
+ white-space: nowrap;
+ display: flex;
+ align-items: center;
+}
+
+.keyword-editing-box {
+ margin-top: 8px;
+}
+
+.keyword-input-box {
+ margin: auto;
+ align-self: center;
+ width: 90%;
+}
+
+.keyword-buttons {
+ margin-left: auto;
+ width: 10%;
+}