mirror of
https://github.com/ansible/awx.git
synced 2026-01-29 07:14:43 -03:30
Removing ansible-ui.css
This commit is contained in:
parent
5cc6f799fe
commit
1578914874
@ -1,713 +0,0 @@
|
||||
/*********************************************
|
||||
* Copyright (c) 2013 AnsibleWorks, Inc.
|
||||
*
|
||||
* ansible-ui.css
|
||||
*
|
||||
* custom styles for ansible-ui
|
||||
*
|
||||
*/
|
||||
|
||||
html {
|
||||
background-color: #171717;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #171717;
|
||||
padding-top: 100px;
|
||||
}
|
||||
|
||||
.tooltip {
|
||||
z-index: 1050;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
hr {
|
||||
border-color: #e3e3e3;
|
||||
}
|
||||
|
||||
.nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.tab-content {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.btn .caret {
|
||||
border-top-color: #696969;
|
||||
}
|
||||
|
||||
.dropdown-toggle, .btn-default {
|
||||
background-color: #ccc;
|
||||
border-color: #ccc;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.dropdown-toggle:hover , .btn-default:hover {
|
||||
background-color: #bbb;
|
||||
border-color: #bbb;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* Use code-breakable in pop-over text to indent and wrap code segments */
|
||||
.code-breakable {
|
||||
word-wrap: break-word;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.break {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.login-alert {
|
||||
font-weight: normal;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
color: #0088cc;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.controls {
|
||||
min-height: 15px;
|
||||
}
|
||||
|
||||
.main-container {
|
||||
min-height: 700px;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-color: #171717;
|
||||
}
|
||||
|
||||
.navbar .nav {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.navbar-inverse .nav > li > a {
|
||||
color: #A9A9A9;
|
||||
}
|
||||
|
||||
.navbar-inverse .nav > li > a:hover,
|
||||
.navbar-inverse .nav > li > a:focus {
|
||||
color: #2078be;
|
||||
}
|
||||
|
||||
/* Using inline-block rather than block keeps
|
||||
brand img from right aligning into the collapse button
|
||||
on mobile screens */
|
||||
.navbar-brand {
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.navbar-brand img {
|
||||
max-width: 260px;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.help-link, .help-link:active, .help-link:visited {
|
||||
color: #49afcd;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.help-link:hover {
|
||||
text-decoration: none;
|
||||
color: #1778c3;
|
||||
}
|
||||
|
||||
.site-footer {
|
||||
width: 100%;
|
||||
margin-top: 60px;
|
||||
background-color: #171717;
|
||||
color: #A9A9A9;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.copyright {
|
||||
display: inline-block;
|
||||
font-size: 11px;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.site-footer a,
|
||||
.site-footer a:active,
|
||||
.site-footer a:hover,
|
||||
.site-footer a:visited {
|
||||
color: #A9A9A9;
|
||||
font-size: 18px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.site-footer .social {
|
||||
display: inline-block;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.site-footer .logo {
|
||||
display: inline-block;
|
||||
margin-right: 35px;
|
||||
}
|
||||
|
||||
.site-footer .logo img {
|
||||
max-width: 125px;
|
||||
}
|
||||
|
||||
.login-header {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login-header img {
|
||||
max-width: 100px;
|
||||
}
|
||||
|
||||
/* Outline required fields in Red when focused */
|
||||
.form-control[required]:focus {
|
||||
border-color: rgba(204, 0, 0, 0.8);
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(204, 0, 0, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(204, 0, 0, 0.6);
|
||||
}
|
||||
|
||||
/* For some reason TB 3 RC1 does not provide an input-mini */
|
||||
.input-mini {
|
||||
height: 26px;
|
||||
padding: 3px 8px;
|
||||
font-size: 12px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.error {
|
||||
margin-top: 5px;
|
||||
line-height: normal;
|
||||
font-size: 12px;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.xsmall {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.note {
|
||||
font-size: 12px;
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
legend {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.navigation {
|
||||
margin: 15px 0 15px 0;
|
||||
}
|
||||
|
||||
.page-number {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.page-number-small {
|
||||
display: inline-block;
|
||||
font-size: 11px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.footer-navigation {
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
.lookup-navigation {
|
||||
margin: 15px 0 0 0;
|
||||
/*padding-top: 20px;*/
|
||||
}
|
||||
|
||||
.related-footer {
|
||||
margin: 10px 0 0 0;
|
||||
}
|
||||
|
||||
.page-size {
|
||||
line-size: normal;
|
||||
font-size: 10.5px;
|
||||
}
|
||||
|
||||
.page-size-label {
|
||||
margin-left: 15px;
|
||||
font-size: 10.5px;
|
||||
}
|
||||
|
||||
.accordion-heading {
|
||||
font-weight: bold;
|
||||
color: #0088cc;
|
||||
}
|
||||
|
||||
.accordion-heading i {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.status-actions {
|
||||
display: inline-block;
|
||||
height: 25px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.status-spin {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-left: 15px;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.search-widget {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.search-widget label {
|
||||
display:inline-block;
|
||||
vertical-align: middle;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
.nav-path {
|
||||
padding: 5px 0 10px 0;
|
||||
margin-bottom: 25px;
|
||||
margin-right: 5px;
|
||||
border: 1px solid #d8d8d8;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 6px;
|
||||
box-shadow: 3px 3px 4px 0 #808080;
|
||||
}
|
||||
|
||||
.nav-path ul {
|
||||
padding-left: 0;
|
||||
margin-left: 10px;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
|
||||
}
|
||||
|
||||
.greeting {
|
||||
padding-right: 22px;
|
||||
}
|
||||
|
||||
.breadcrumb .active {
|
||||
color: #171717;
|
||||
}
|
||||
|
||||
.nav-tabs > li > a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
input[type="text"].field-mini-height {
|
||||
font-size: 10.5px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
select.field-mini-height {
|
||||
height: 22px;
|
||||
font-size: 10.5px;
|
||||
}
|
||||
|
||||
.ask-checkbox {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.tree-container {
|
||||
padding: 0;
|
||||
margin: 5px 0 15px 0;
|
||||
}
|
||||
|
||||
.no-padding {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Display list actions next to search widget */
|
||||
|
||||
.list-actions {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
margin-left: 10px;
|
||||
padding-bottom: 22px;
|
||||
}
|
||||
|
||||
.list-actions .btn {
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.btn-help {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
/* End Display list actions */
|
||||
|
||||
.well {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
/* Enable table-hover to work when table is in a well */
|
||||
.table-hover tbody tr:hover > td,
|
||||
.table-hover tbody tr:hover > th {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.table-hover-inverse tbody tr:hover > td,
|
||||
.table-hover-inverse tbody tr:hover > th {
|
||||
background-color: #dff0d8;
|
||||
}
|
||||
|
||||
|
||||
/* Jobs pages */
|
||||
|
||||
.job-error,
|
||||
.job-failed,
|
||||
.license-expired,
|
||||
.license-invalid,
|
||||
.active-failures-true,
|
||||
.active-failures-true a,
|
||||
.active-failures-true a:active,
|
||||
input[type="text"].job-failed,
|
||||
input[type="text"].job-error
|
||||
{
|
||||
color: #da4f49;
|
||||
}
|
||||
|
||||
.active-failures-true a:hover {
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.job-failures-true {
|
||||
padding-top: 5px;
|
||||
color: #da4f49;
|
||||
}
|
||||
|
||||
.job-event-status,
|
||||
.license-status {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.job-new, input[type="text"].job-new,
|
||||
.job-canceled, input[type="text"].job-canceled {
|
||||
color: #778899;
|
||||
}
|
||||
|
||||
.job-pending,
|
||||
.job-running,
|
||||
.job-success,
|
||||
.job-successful,
|
||||
.active-failures-false,
|
||||
.license-valid,
|
||||
input[type="text"].job-success,
|
||||
input[type="text"].job-successful
|
||||
{
|
||||
color: #5bb75b;
|
||||
}
|
||||
|
||||
.field-success {
|
||||
color: #5bb75b;
|
||||
}
|
||||
|
||||
.field-success input {
|
||||
border-color: #5bb75b;
|
||||
}
|
||||
|
||||
.field-failure {
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.field-failure input {
|
||||
border-color: #FF0000;
|
||||
}
|
||||
|
||||
.job-changed,
|
||||
.license-warning,
|
||||
.license-demo {
|
||||
color: #FF9900;
|
||||
}
|
||||
|
||||
.job-detail-status {
|
||||
display: inline-block;
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
margin-top:5px;
|
||||
}
|
||||
|
||||
|
||||
.form-items .search-widget {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.form-items .item-count {
|
||||
display: inline-block;
|
||||
font-size: small;
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
.child-event a {
|
||||
color: #171717;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.level-1 {
|
||||
padding-left: 24px;
|
||||
}
|
||||
.level-2 {
|
||||
padding-left: 48px;
|
||||
}
|
||||
.level-3 {
|
||||
padding-left: 72px;
|
||||
}
|
||||
|
||||
.level-3-detail {
|
||||
padding-left: 72px;
|
||||
}
|
||||
|
||||
#job_events .control-group {
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
/* End Jobs Page */
|
||||
|
||||
|
||||
/* Inventory detail */
|
||||
|
||||
.inventory-title {
|
||||
margin-top: 15px;
|
||||
color: #0088cc;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.inventory-buttons {
|
||||
text-align: right;
|
||||
background-color: #f5f5f5;
|
||||
border-left: 1px solid #e3e3e3;
|
||||
border-right: 1px solid #e3e3e3;
|
||||
border-top: 1px solid #e3e3e3;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
-moz-border-top-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
-moz-border-top-right-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
}
|
||||
|
||||
.inventory-buttons button {
|
||||
margin: 5px 5px 3px 0;
|
||||
}
|
||||
|
||||
.inventory-filter {
|
||||
padding: 0 3px 3px 3px;
|
||||
text-align: right;
|
||||
background-color: #f5f5f5;
|
||||
border-left: 1px solid #e3e3e3;
|
||||
border-right: 1px solid #e3e3e3;
|
||||
border-bottom: 1px solid #e3e3e3;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
-moz-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
-moz-border-bottom-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
|
||||
.inventory-filter label {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.hosts-well {
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.hosts-title p {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.hosts-title h4 {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.hosts-well .search-widget {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.hosts-well .list-actions {
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.parse-selection {
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
line-height: normal;
|
||||
margin: 5px 0 8px 0;
|
||||
}
|
||||
|
||||
.parse-selection input {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.parse-select .parse-label {
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
#tree-view {
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
.slider {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
width: 100px;
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
|
||||
/* Sort link styles */
|
||||
|
||||
.list-header:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.list-header i {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.list-header .icon-sort {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.list-header .icon-sort-down,
|
||||
.list-header .icon-sort-up {
|
||||
color: #171717;
|
||||
}
|
||||
|
||||
/* job_events syles */
|
||||
tr td i {
|
||||
float: none;
|
||||
margin-right: 10px;
|
||||
padding-top: 3px;
|
||||
padding-left: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
tr td button i {
|
||||
margin-right: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.event-form {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.event-detail-host {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.form-section-title {
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
border-bottom: 1px solid #d8d8d8;
|
||||
margin-bottom: 10px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.modal-backdrop,
|
||||
.modal-backdrop.fade.in {
|
||||
opacity: 0.6;
|
||||
filter: alpha(opacity=60);
|
||||
}
|
||||
|
||||
.modal-body .ui-accordion .ui-accordion-content {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
|
||||
/* overrides to TB modal */
|
||||
.modal-header {
|
||||
padding: 15px 10px;
|
||||
border-bottom: 1px solid #eee;
|
||||
color: #2078be;
|
||||
-webkit-border-top-left-radius: 3px;
|
||||
-moz-border-top-left-radius: 3px;
|
||||
border-top-left-radius: 3px;
|
||||
-webkit-border-top-right-radius: 3px;
|
||||
-moz-border-top-right-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
}
|
||||
|
||||
.modal {
|
||||
border: 1px solid #171717;
|
||||
}
|
||||
|
||||
.close {
|
||||
color: #A9A9A9;
|
||||
opacity: .7;
|
||||
filter: alpha(opacity=70);
|
||||
}
|
||||
|
||||
.modal-header h3 {
|
||||
font-size: 22px;
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
text-rendering: optimizeLegibility;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
padding-top: 30px;
|
||||
}
|
||||
|
||||
#prompt-modal .modal-body {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.skinny-modal .modal-body {
|
||||
padding: 5px 10px 0px 10px;
|
||||
}
|
||||
|
||||
/* form navigation */
|
||||
.navigation-buttons {
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
|
||||
/* Large desktop */
|
||||
@media (min-width: 1200px) {
|
||||
|
||||
}
|
||||
|
||||
/* Portrait tablet to landscape and desktop */
|
||||
@media (min-width: 768px) and (max-width: 979px) {
|
||||
|
||||
}
|
||||
|
||||
/* Landscape phone to portrait tablet */
|
||||
@media (max-width: 767px) {
|
||||
|
||||
}
|
||||
|
||||
/* Landscape phones and down */
|
||||
@media (max-width: 480px) {
|
||||
|
||||
/* Job events */
|
||||
.level-1, .level-2, .level-3, .level-3-detail {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
table {
|
||||
table-layout: fixed;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user