summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/views/_action-bar.scss
diff options
context:
space:
mode:
authorZara Gebru <zgebru@thoughtworks.com>2016-12-02 15:25:23 +0100
committerZara Gebru <zgebru@thoughtworks.com>2016-12-02 15:25:23 +0100
commitb14833fbb56bcd5bff0750c16fd9214009b955be (patch)
treea1ec621dd5f76d756ac59b72a763a34a2c189387 /web-ui/app/scss/views/_action-bar.scss
parent688a8b42e8ab7c6d4529b6dda66f40eead07ad02 (diff)
[refactor] move app dir into public dir
Diffstat (limited to 'web-ui/app/scss/views/_action-bar.scss')
-rw-r--r--web-ui/app/scss/views/_action-bar.scss159
1 files changed, 0 insertions, 159 deletions
diff --git a/web-ui/app/scss/views/_action-bar.scss b/web-ui/app/scss/views/_action-bar.scss
deleted file mode 100644
index 40e677b0..00000000
--- a/web-ui/app/scss/views/_action-bar.scss
+++ /dev/null
@@ -1,159 +0,0 @@
-#top-pane {
- height: auto;
- overflow: hidden;
- background: $top_pane;
- border-top: 1px solid $top_pane;
-
- #list-actions {
- width: 100%;
- height: 34px;
- margin: 0;
- border-top: 1px solid $white;
- border-bottom: 2px solid lighten($top_pane, 30%);
- background: $white;
- clear: both;
- overflow: hidden;
- padding-left: 10px;
-
- li {
- display: inline-block;
- margin: 1px -3px;
- vertical-align: top;
-
- input[type=checkbox] {
- @include check-box;
-
- margin: 7px 13px 7px;
- }
-
- select {
- padding: 1px 3px;
- margin: 0;
- }
-
- input[type=button] {
- margin: 2px;
- padding: 4px 10px;
- background: $background_light_grey;
- color: $dark_grey;
- text-transform: uppercase;
- font-weight: 400;
- font-size: 0.8em;
- opacity: 0.7;
- border: 1px solid darken($contrast, 10%);
-
- @include border-radius(1px);
-
- @include btn-transition;
-
- &:hover {
- opacity: 1;
- }
-
- &[disabled=disabled] {
- opacity: 0.5;
- cursor: default;
- }
- }
- }
-
- #pagination-trigger {
- cursor: pointer;
- margin: 4px 12px 0 5px;
-
- span {
- padding-left: 5px;
- }
- }
- }
-
- #compose-search-trigger {
- padding: 4px;
- }
-
- #actions {
- ul {
- margin: 0;
-
- li {
- display: inline-block;
- margin-right: -5px;
-
- a {
- transition: background-color 150ms ease-out;
- background: $top_pane;
- color: $white;
- font-size: 1.5em;
- display: block;
- padding: 14px 20px;
- margin: 0 1px 0px;
- opacity: 0.35;
-
- &.selected {
- background: $top_pane;
- opacity: 1;
- cursor: default;
- }
-
- &:hover {
- opacity: 1;
- }
- }
- }
- }
- }
-
- #search-trigger {
- padding: 5px;
- padding-left: 0;
-
- input {
- margin: 0;
- padding: 8px 30px;
- color: $navigation_background;
- background: white;
- border: none;
- transition: background-color 150ms ease-out;
-
- &:hover {
- background: darken(white, 2%);
- }
-
- &:focus {
- background: darken(white, 5%);
- }
- }
-
- form:before {
- font-family: "FontAwesome";
- content: "\f002";
- position: absolute;
- padding: 0 10px;
- top: 15px;
- color: $medium_light_grey;
- }
- }
-}
-
-#refresh-mails-trigger {
- i {
- margin-top: 3px;
- cursor: pointer;
- opacity: 0.9;
- padding: 4px;
-
- &:hover {
- opacity: 1;
-
- &:after {
- content: "\f021";
- }
-
- &:before {
- content: attr(data-label);
- font-size: 0.8em;
- padding-right: 5px;
- }
- }
- }
-}