Hansimov commited on
Commit
1cafe72
1 Parent(s): e940bf5

:zap: [Enhance] Prettify styles of agent buttons

Browse files
Files changed (2) hide show
  1. css/default.css +14 -3
  2. index.html +2 -2
css/default.css CHANGED
@@ -185,12 +185,23 @@ body {
185
  color: orange;
186
  }
187
 
188
- .explicit-button {
189
  background-color: #e9efff;
190
- border-width: 1px;
 
191
  box-shadow: 0px 0px 6px 0px rgba(122, 122, 122, 0.4);
192
  }
193
- .explicit-button:hover {
 
 
 
 
 
 
 
 
 
 
194
  background-color: rgb(252, 231, 223);
195
  font-weight: bold;
196
  }
 
185
  color: orange;
186
  }
187
 
188
+ .new-agent-button {
189
  background-color: #e9efff;
190
+ border-width: 0px;
191
+ border-radius: 4px;
192
  box-shadow: 0px 0px 6px 0px rgba(122, 122, 122, 0.4);
193
  }
194
+ .agent-button {
195
+ background-color: #e9efff;
196
+ border-width: 0px;
197
+ border-radius: 4px;
198
+ box-shadow: 0px 0px 6px 0px rgba(122, 122, 122, 0.4);
199
+ }
200
+ .new-agent-button:hover {
201
+ background-color: rgb(223, 252, 227);
202
+ font-weight: bold;
203
+ }
204
+ .agent-button:hover {
205
  background-color: rgb(252, 231, 223);
206
  font-weight: bold;
207
  }
index.html CHANGED
@@ -69,8 +69,8 @@
69
  </h5>
70
  </div>
71
  <div class="offcanvas-body">
72
- <div class="my-0 row no-gutters">
73
- <button id="new-agent-button" type="button" class="explicit-button">
74
  <i class="fa fa-plus"></i> New Agent
75
  </button>
76
  </div>
 
69
  </h5>
70
  </div>
71
  <div class="offcanvas-body">
72
+ <div class="my-3 row no-gutters">
73
+ <button id="new-agent-button" type="button" class="new-agent-button">
74
  <i class="fa fa-plus"></i> New Agent
75
  </button>
76
  </div>