summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/static/infrastructure/scss
diff options
context:
space:
mode:
Diffstat (limited to 'tuskar_ui/infrastructure/static/infrastructure/scss')
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_breadcrumbs.scss31
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_buttons.scss15
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_capacities.scss24
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_charts.scss15
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_detail_pages.scss12
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_flavor_usages.scss89
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_formsets.scss34
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_icons.scss5
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_individual_pages.scss271
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_numberpicker.scss49
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/_tables.scss74
-rw-r--r--tuskar_ui/infrastructure/static/infrastructure/scss/infrastructure.scss15
12 files changed, 0 insertions, 634 deletions
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_breadcrumbs.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_breadcrumbs.scss
deleted file mode 100644
index 6a4e24f7..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_breadcrumbs.scss
+++ /dev/null
@@ -1,31 +0,0 @@
-// breadcrumbs
-
-.breadcrumbs {
- font-size: 85%;
- margin: 0 0 25px 0;
-
- a {
- color: rgb(170, 170, 170);
- text-decoration: underline;
-
- &:hover {
- text-decoration: none;
- color: rgb(100, 100, 100);
- }
- }
-
- .separator {
- color: rgb(200, 200, 200);
-
- &:before {
- display: inline;
- content: ">>";
- margin: 0 7px;
- }
-
- &:last-child:after {
- display: inline;
- content: "...";
- }
- }
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_buttons.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_buttons.scss
deleted file mode 100644
index 0a62aa05..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_buttons.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-// buttons
-.btn-default:not(.btn-danger, .btn-primary) {
- background: rgb(243, 243, 243);
- &:hover {
- background: rgb( 235, 235, 235);
- }
-}
-
-.btn-toolbar.pull-right {
- margin: 0;
-}
-
-.btn-no-border {
- border: none;
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_capacities.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_capacities.scss
deleted file mode 100644
index 91b2a1f5..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_capacities.scss
+++ /dev/null
@@ -1,24 +0,0 @@
-// capacities
-table.capacities {
- &.overall_usage {
- margin-top: 5px;
- }
-
- td {
- padding: 3px;
-
- &.capacity_label {
- width: 60px;
- padding-right: 5px;
- color: rgb(160,160,160);
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
-
- & div.capacity_bar {
- line-height: 0;
- width: 120px;
- }
- }
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_charts.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_charts.scss
deleted file mode 100644
index 1a20c71c..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_charts.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-form.performance_charts {
- .pull-right {
- input {
- margin-left: 0;
- }
- }
-}
-.overview_chart {
- .chart_container {
- .spinner_wrapper {
- margin-top: 12px;
- margin-left: 12px;
- }
- }
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_detail_pages.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_detail_pages.scss
deleted file mode 100644
index 7c3d096a..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_detail_pages.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-.dl-horizontal-left {
- dt {
- width: 120px;
- text-align: left;
- color: rgb(160, 160, 160);
- font-weight: normal;
- }
- dd {
- margin-left: 130px;
- padding-bottom: .5em;
- }
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_flavor_usages.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_flavor_usages.scss
deleted file mode 100644
index 639be9ec..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_flavor_usages.scss
+++ /dev/null
@@ -1,89 +0,0 @@
-// flavor usages
-div.flavor_usage_bar {
- max-width: 550px;
-}
-
-table.flavor_usages {
- width: 100%;
- max-width: 550px;
-
- td {
- text-align: center;
- padding: 3px;
-
- &.flavor_usage_label {
- width: 60px;
- text-align: center;
- }
-
- &.flavor_usage_text {
- width: 60px;
- text-align: center;
- line-height: 1;
- }
-
- & div.flavor_usage_bar {
- width: auto;
- text-align: center;
- line-height: 0;
- height: 120px;
- }
- }
-}
-
-#interval_selector {
- position: absolute;
- right: 15px;
- top: 15px;
-
- li {
- display: inline;
- list-style-type: none;
- padding-right: 5px;
-
- &.active {
- font-weight: bold;
-
- a {
- color: black;
-
- &:hover {
- text-decoration:none;
- }
- }
- }
- }
-}
-
-svg {
- .axis {
- path, line {
- fill: none;
- stroke: #000;
- shape-rendering: crispEdges;
- }
- }
-}
-
-.communication_chart_wrapper {
- display:inline-block;
- vertical-align: middle;
- width: 38%;
-}
-
-.communication_chart_connection {
- display:inline-block;
- width: 60px;
- height: 30px;
- vertical-align: middle;
- background: url('/static/dashboard/img/communication_flow.png') no-repeat 50% 50%;
- background-size: 40px 20px;
-}
-
-.circles_chart_time_picker {
- float: right;
-}
-
-.csv_rack_table {
- padding-top: 40px;
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_formsets.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_formsets.scss
deleted file mode 100644
index cb1f3b59..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_formsets.scss
+++ /dev/null
@@ -1,34 +0,0 @@
-// formsets
-.datatable {
- th.narrow {
- width: 1em;
- }
-
- input {
- padding: 2px 5px;
- margin: 0;
- }
-
- input.number_input_slim {
- width: 4em;
- text-align: right;
- }
-
- th span.required:after {
- // Copied from horizon, because there is no way to reuse their class.
- content: "*";
- font-weight: bold;
- line-height: 0;
- padding-left: 4px;
- color: #428bca;
- }
-}
-
-.param-section {
- padding-bottom: 15px;
-}
-
-#collapse-upload-form {
- text-align: center;
- padding-bottom: 30px;
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_icons.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_icons.scss
deleted file mode 100644
index e5ea1f78..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_icons.scss
+++ /dev/null
@@ -1,5 +0,0 @@
-.text-warning .fa,
-.alert-warning .fa,
-.text-warning.fa {
- color: #eea236;
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_individual_pages.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_individual_pages.scss
deleted file mode 100644
index b9cdfcdd..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_individual_pages.scss
+++ /dev/null
@@ -1,271 +0,0 @@
-#nodes-formset-datatable .datatable tbody {
- input {
- padding: 2px 1px;
- }
- input.number_input_slim {
- width: 3em;
- }
- td {
- padding: 2px;
- text-align: center;
- a.close {
- margin-right: 4px;
- }
- }
-}
-
-$link-color: #428bca;
-
-// Register nodes formset
-.register-nodes-formset {
- a.node-icon {
- display: block;
- float: right;
- padding-left: 10px;
- }
-
- .nav-pills > .active > a {
- color: #fff;
- background-color: $link-color;
- }
-
- ul.nav-pills > li span.delete-icon {
- display: none;
- }
-
- ul.nav-pills > li.active span.delete-icon {
- display: block;
- cursor: default;
- color: #fff;
- z-index: 1000;
- position: absolute;
- right: 16px;
- top: 10px;
- }
-
- ul.nav-pills > li {
- position: relative;
- }
-
- ul.nav-pills > li.active {
- width: 107%;
- }
-
- ul.nav-pills > li.active:after {
- display: block;
- content: '';
- position: absolute;
- top: 1px;
- right: -7px;
- border-top: 18px solid transparent;
- border-bottom: 18px solid transparent;
- border-left: 8px solid $link-color;
- }
-
- .register-nav-head {
- margin-top: 19px;
- margin-bottom: 5px;
-
- h4 {
- margin: 0;
- }
- }
-
- .form h5 {
- margin: 0.5em 0 0.75em 0;
- }
-
- .form label.checkbox {
- font-weight: normal;
- }
-
- .panel {
- margin: 8px -8px 8px -8px;
- padding: 8px;
- .panel-heading {
- margin: -8px -8px 0 -8px;
- }
- }
-
- fieldset .form-group {
- width: 100%;
- input, textarea, select {
- width: 100%;
- margin-left: 5px;
- }
- }
-
- .required label:after {
- content: "*";
- font-weight: bold;
- line-height: 0;
- padding-left: 4px;
- color: #428bca;
- }
-}
-
-
-#detail__overview, #collapseParameters {
- ul {
- list-style: disc;
- margin: 0 0 9px 25px;
- }
-}
-
-// Power state icons
-.fa.powerstate {
- display: inline-block;
- vertical-align: middle;
- &.fa-play {
- color: $brand-success;
- }
-}
-
-// Node detail view
-.node-details {
- .chart svg {
- path.undefined {
- stroke-width: 1px;
- stroke: #ff7f0e;
- }
-
- .y_ticks text {
- display: none;
- }
- }
-}
-
-// Node overview
-
-.nodes {
- .widget-info {
- padding: 0 30px 0 30px;
- text-align: center;
- span {
- font-size: 300%;
- }
- }
-
- .d3_pie_chart_distribution {
- .legend {
- position: relative;
- }
- }
-}
-
-// Plan overview
-
-.deployment-icon {
- vertical-align: middle;
- float: left;
- text-align: center;
- color: #ddd;
- background: #fff;
-}
-
-.deployment-box {
- border-left: 4px solid #eee;
- margin-left: 24px;
- margin-bottom: 12px;
- padding-left: 20px;
-}
-
-.deployment-buttons {
- margin-top: 12px;
-}
-
-.deployment-roles-label {
- font-weight: bold;
- display: block;
- margin: 14px 0 0 0;
-}
-
-.deploy-role-icon {
- a {
- display: inline-block;
- margin: 7px 0 0 0;
- }
- i {
- display: inline-block;
- margin: 14px 0 0 0;
- }
-}
-.deploy-role-count {
- text-align: right;
- vertical-align: middle;
- font-size: 32px;
- small {
- font-size: 28px;
- }
-}
-
-#collapseDriver {
- margin-left: -50px;
-}
-
-/* Configuration parameters */
-table .data-table-config-label {
- width: 20em;
- vertical-align: top;
-}
-table .data-table-config-value {
- font-weight: bold;
-}
-table.definition-list-table > thead {
- display: none;
-}
-table.definition-list-table > tbody > tr > td {
- border: 0;
-}
-
-
-ul.nav-arrow {
- padding-top: 30px;
- & > li {
- z-index: 1000;
- position: relative;
- margin-right: -30px;
- & > a {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- &.active {
- margin-right: -31px;
- &:after {
- display: block;
- content: '';
- position: absolute;
- top: 0px;
- right: -12px;
- border-top: 19px solid transparent;
- border-bottom: 19px solid transparent;
- border-left: 12px solid $link-color;
- }
- }
- }
-}
-
-.configuration-panel {
- padding: 15px 0 0px 30px !important;
- border: none;
- border-left: 1px solid $border-color;
- border-radius: 0;
- box-shadow: none;
-}
-
-.password-button + div.popover {
- white-space: pre-wrap;
- word-wrap: break-word;
-}
-
-.form-horizontal label .popover {
- min-width: 250px;
- .popover-content {
- font-weight: normal;
- }
-}
-
-// hacky positioning of advanced service config form buttons next to header
-.page_form_actions {
- margin-top: -5em;
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_numberpicker.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_numberpicker.scss
deleted file mode 100644
index d443c41e..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_numberpicker.scss
+++ /dev/null
@@ -1,49 +0,0 @@
-// Number picker widget
-div.number_picker {
- text-align: left;
- margin: 5px 14px;
- width: 35px;
- height: 35px;
- padding: 0;
- display: inline-block;
- position: relative;
- vertical-align: middle;
- input {
- border: 0;
- width: 20px;
- display: block;
- margin: 8px auto;
- padding: 0;
- text-align: center;
- outline: 0;
- }
- a {
- display: block;
- width: 14px;
- position: absolute;
- top: 8px;
- cursor: default;
- &.disabled {
- cursor: default;
- }
- &.arrow-left {
- left: -12px;
- }
- &.arrow-right {
- right: -16px;
- }
- }
- a.disabled {
- opacity: 0.25;
- }
- &.readonly a {
- display: none;
- }
- span.step {
- display: block;
- font-size: 75%;
- position: absolute;
- top: -2px;
- right: -14px;
- }
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/_tables.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/_tables.scss
deleted file mode 100644
index d881ef4c..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/_tables.scss
+++ /dev/null
@@ -1,74 +0,0 @@
-tr.table_actions_row {
- th.table_header {
- background: #f9f9f9;
- border-top-width: 2px !important;
- .table_actions {
- float: none;
- .table_search, .table_filter {
- .filter_select {
- display: inline-block;
- position: relative;
- background: rgb(243, 243, 243);
- margin-right: -4px;
- &:after, &:before {
- left: 100%;
- top: 50%;
- border: solid transparent;
- content: " ";
- height: 0;
- width: 0;
- position: absolute;
- pointer-events: none;
- z-index: 3;
- }
-
- &:after {
- border-color: rgba(243, 243, 243, 0);
- border-left-color: #f3f3f3;
- border-width: 14px;
- margin-top: -14px;
- }
- &:before {
- border-color: rgba(204, 204, 204, 0);
- border-left-color: #cccccc;
- border-width: 16px;
- margin-top: -16px;
- }
- select {
- overflow:hidden;
- width: 120%;
- border-right: none;
- box-shadow: none;
- background: transparent;
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .caret {
- position: absolute;
- right: 0;
- top: 47%;
- }
- }
- input[type="text"] {
- padding-right: 5px;
- }
- input.filter_select_input {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- border-left: none;
- padding-left: 20px;
- &:focus {
- box-shadow: none;
- }
- }
- }
- }
- }
-}
-
-.table > thead > tr > th {
- border-bottom: none;
-}
-tr.column_headers th {
- border: 1px solid $gray-light;
-}
diff --git a/tuskar_ui/infrastructure/static/infrastructure/scss/infrastructure.scss b/tuskar_ui/infrastructure/static/infrastructure/scss/infrastructure.scss
deleted file mode 100644
index 3194e008..00000000
--- a/tuskar_ui/infrastructure/static/infrastructure/scss/infrastructure.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Additional CSS for infrastructure. */
-@import "/dashboard/scss/variables";
-@import "/bootstrap/scss/bootstrap/variables";
-
-@import "numberpicker";
-@import "breadcrumbs";
-@import "buttons";
-@import "capacities";
-@import "flavor_usages";
-@import "formsets";
-@import "individual_pages";
-@import "tables";
-@import "charts";
-@import "icons";
-@import "detail_pages"