3
0
Fork 0
mirror of https://github.com/farmOS/farmOS.git synced 2024-02-23 11:37:38 +01:00
farmOS/css/style.css

102 lines
1.7 KiB
CSS
Raw Normal View History

/**
* Override the Yeti override to eliminate extra space at the top.
*/
.navbar.container, .navbar.container-fluid {
margin-top: 0;
}
2015-02-26 17:51:27 +01:00
/**
* Nudge the logo down a bit.
*/
.navbar .logo {
padding-top: 5px;
2015-02-26 20:26:37 +01:00
}
2016-03-08 00:10:15 +01:00
/**
* Hide page title on homepage.
*/
body.front h1.page-header {
display: none;
}
/**
* Remove padding and list style from user login block links (request new password).
*/
form#user-login-form ul {
padding-left: 0;
}
form#user-login-form ul li {
list-style: none;
}
/**
* Colorbox image styles.
* @see farm_theme_preprocess_field() in template.php.
*/
.field-name-field-farm-images .field-item {
float: left;
padding: 5px;
}
2015-02-26 20:26:37 +01:00
/**
* Fix DateAPI field styles.
*/
.container-inline-date {
margin-bottom: 10px;
}
.container-inline-date .control-label {
display: block;
}
.container-inline-date .date-padding {
padding-left: 0;
}
2015-02-26 20:27:12 +01:00
/**
* Fix Views exposed filter/sort.
*/
.views-exposed-form .views-exposed-widget .form-submit {
margin-top: 1.6em;
padding: 6px 12px;
}
2015-02-26 20:27:29 +01:00
/**
* Fix checkboxes in Views Bulk Operations.
*/
.views-field-views-bulk-operations .checkbox input[type="checkbox"] {
margin-left: 0;
position: relative;
2015-02-26 20:27:29 +01:00
}
/**
* Increase the default font size within maps to create larger buttons.
*/
.openlayers-map-container .gm-style {
font-size: 16px;
}
/**
* Set max-height and overflow styles for layerswitcher.
*/
.openlayers-map-container .layer-switcher .panel {
max-height: 400px;
overflow-y: auto;
}
/**
* Fix Modal popup close button (x).
* See https://www.drupal.org/node/2563967
*/
.modal-header .close {
color: #222222;
}
/**
* Improve Bootstrap Tour styling.
*/
.tour .btn {
padding: 6px 12px;
}
.tour .popover-content {
font-size: 16px;
}