aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/search
diff options
context:
space:
mode:
authorAshley Cai <ashley.lcai@gmail.com>2021-07-10 00:17:09 -0700
committerAshley Cai <ashley.lcai@gmail.com>2021-07-10 00:17:09 -0700
commit4fe24111c6eafc58927fcca9d8c46a5b92cc4078 (patch)
tree83d5b2b368ac58d1bca7a0bce81d538fe481dba6 /src/client/views/search
parent4c1fc6bcfdf603bb8c620f9288da09ed69587bfb (diff)
Standardizing Colors, changing global CSS variables
Diffstat (limited to 'src/client/views/search')
-rw-r--r--src/client/views/search/CheckBox.scss4
-rw-r--r--src/client/views/search/CollectionFilters.scss2
-rw-r--r--src/client/views/search/IconBar.scss2
-rw-r--r--src/client/views/search/IconButton.scss4
-rw-r--r--src/client/views/search/IconButton.tsx2
-rw-r--r--src/client/views/search/NaviconButton.scss4
-rw-r--r--src/client/views/search/SearchBox.scss10
-rw-r--r--src/client/views/search/SelectorContextMenu.scss2
-rw-r--r--src/client/views/search/ToggleBar.scss8
9 files changed, 19 insertions, 19 deletions
diff --git a/src/client/views/search/CheckBox.scss b/src/client/views/search/CheckBox.scss
index cc858bec6..c46b3eb20 100644
--- a/src/client/views/search/CheckBox.scss
+++ b/src/client/views/search/CheckBox.scss
@@ -1,4 +1,4 @@
-@import "../globalCssVariables";
+@import "../global/globalCssVariables";
.checkboxfilter {
display: flex;
@@ -40,7 +40,7 @@
overflow: visible;
background-color: transparent;
border-style: solid;
- border-color: $alt-accent;
+ border-color: $medium-gray;
border-width: 2px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
diff --git a/src/client/views/search/CollectionFilters.scss b/src/client/views/search/CollectionFilters.scss
index b54cdcbd1..845b16f67 100644
--- a/src/client/views/search/CollectionFilters.scss
+++ b/src/client/views/search/CollectionFilters.scss
@@ -1,4 +1,4 @@
-@import "../globalCssVariables";
+@import "../global/globalCssVariables";
.collection-filters {
display: flex;
diff --git a/src/client/views/search/IconBar.scss b/src/client/views/search/IconBar.scss
index 013dcd57e..6aaf7918d 100644
--- a/src/client/views/search/IconBar.scss
+++ b/src/client/views/search/IconBar.scss
@@ -1,4 +1,4 @@
-@import "../globalCssVariables";
+@import "../global/globalCssVariables";
.icon-bar {
display: flex;
diff --git a/src/client/views/search/IconButton.scss b/src/client/views/search/IconButton.scss
index 4ec03c7c9..d87b8bd5c 100644
--- a/src/client/views/search/IconButton.scss
+++ b/src/client/views/search/IconButton.scss
@@ -1,4 +1,4 @@
-@import "../globalCssVariables";
+@import "../global/globalCssVariables";
.type-outer {
display: flex;
@@ -9,7 +9,7 @@
.type-icon {
height: 30px;
width: 30px;
- color: $light-color;
+ color: $white;
// background-color: rgb(194, 194, 197);
background-color: gray;
border-radius: 50%;
diff --git a/src/client/views/search/IconButton.tsx b/src/client/views/search/IconButton.tsx
index 349690b20..6fd91c9c1 100644
--- a/src/client/views/search/IconButton.tsx
+++ b/src/client/views/search/IconButton.tsx
@@ -4,7 +4,7 @@ import { action, IReactionDisposer, observable, reaction, runInAction } from 'mo
import { observer } from 'mobx-react';
import * as React from 'react';
import { DocumentType } from "../../documents/DocumentTypes";
-import '../globalCssVariables.scss';
+import '../global/globalCssVariables.scss';
import { IconBar } from './IconBar';
import "./IconButton.scss";
import "./SearchBox.scss";
diff --git a/src/client/views/search/NaviconButton.scss b/src/client/views/search/NaviconButton.scss
index c23bab461..8a70b29de 100644
--- a/src/client/views/search/NaviconButton.scss
+++ b/src/client/views/search/NaviconButton.scss
@@ -1,4 +1,4 @@
-@import "../globalCssVariables";
+@import "../global/globalCssVariables";
$height-icon: 15px;
$width-line: 30px;
@@ -20,7 +20,7 @@ $translateX: 0;
.line {
display: block;
- background: $alt-accent;
+ background: $medium-gray;
width: $width-line;
height: $height-line;
position: absolute;
diff --git a/src/client/views/search/SearchBox.scss b/src/client/views/search/SearchBox.scss
index 4f5b7e41a..8d6bc86cb 100644
--- a/src/client/views/search/SearchBox.scss
+++ b/src/client/views/search/SearchBox.scss
@@ -1,4 +1,4 @@
-@import "../globalCssVariables";
+@import "../global/globalCssVariables";
@import "./NaviconButton.scss";
.searchBox-container {
@@ -20,7 +20,7 @@
display: flex;
justify-content: center;
align-items: center;
- background-color: black;
+ background-color: $dark-color;
.searchBox-lozenges {
position: absolute;
@@ -86,7 +86,7 @@
&.searchBox-input {
margin:5px;
border-radius:20px;
- border:black;
+ border:$dark-color;
display: block;
width: 130px;
-webkit-transition: width 0.4s;
@@ -114,7 +114,7 @@
}
&.searchBox-close {
- color: $light-color;
+ color: $white;
max-height: $searchpanel-height;
}
}
@@ -132,7 +132,7 @@
.no-result {
width: 500px;
- background: $light-color-secondary;
+ background: $light-gray;
padding: 10px;
height: 50px;
text-transform: uppercase;
diff --git a/src/client/views/search/SelectorContextMenu.scss b/src/client/views/search/SelectorContextMenu.scss
index 48cacc608..438b6a0c2 100644
--- a/src/client/views/search/SelectorContextMenu.scss
+++ b/src/client/views/search/SelectorContextMenu.scss
@@ -1,4 +1,4 @@
-@import "../globalCssVariables";
+@import "../global/globalCssVariables";
.parents {
background: $lighter-alt-accent;
diff --git a/src/client/views/search/ToggleBar.scss b/src/client/views/search/ToggleBar.scss
index 79f866acb..3a164f133 100644
--- a/src/client/views/search/ToggleBar.scss
+++ b/src/client/views/search/ToggleBar.scss
@@ -1,9 +1,9 @@
-@import "../globalCssVariables";
+@import "../global/globalCssVariables";
.toggle-title {
display: flex;
align-items: center;
- color: $light-color;
+ color: $white;
text-transform: uppercase;
flex-direction: row;
justify-content: space-around;
@@ -25,7 +25,7 @@
// height: 50px;
height: 30px;
width: 100px;
- background-color: $alt-accent;
+ background-color: $medium-gray;
border-radius: 10px;
padding: 5px;
display: flex;
@@ -36,6 +36,6 @@
width: 40px;
height: 100%;
border-radius: 10px;
- background-color: $light-color;
+ background-color: $white;
}
} \ No newline at end of file