first import
This commit is contained in:
31
sites/all/modules/ctools/css/button.css
Normal file
31
sites/all/modules/ctools/css/button.css
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
.ctools-button-processed {
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
display: inline-block;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.ctools-button-processed:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ctools-button-processed .ctools-content {
|
||||
padding-bottom: 2px;
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
.ctools-no-js .ctools-content ul,
|
||||
.ctools-button-processed .ctools-content ul {
|
||||
list-style-image: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.ctools-button-processed li {
|
||||
line-height: 1.3333;
|
||||
}
|
||||
|
||||
.ctools-button li a {
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
}
|
26
sites/all/modules/ctools/css/collapsible-div.css
Normal file
26
sites/all/modules/ctools/css/collapsible-div.css
Normal file
@ -0,0 +1,26 @@
|
||||
|
||||
.ctools-collapsible-container .ctools-toggle {
|
||||
float: left;
|
||||
width: 21px;
|
||||
height: 21px;
|
||||
cursor: pointer;
|
||||
background-position: 7px 7px;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url(../images/collapsible-expanded.png);
|
||||
}
|
||||
|
||||
.ctools-collapsible-container .ctools-collapsible-handle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
html.js .ctools-collapsible-container .ctools-collapsible-handle {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ctools-collapsible-container .ctools-collapsible-handle {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.ctools-collapsible-container .ctools-toggle-collapsed {
|
||||
background-image: url(../images/collapsible-collapsed.png);
|
||||
}
|
10
sites/all/modules/ctools/css/context.css
Normal file
10
sites/all/modules/ctools/css/context.css
Normal file
@ -0,0 +1,10 @@
|
||||
.ctools-context-holder .ctools-context-title {
|
||||
float: left;
|
||||
width: 49%;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.ctools-context-holder .ctools-context-content {
|
||||
float: right;
|
||||
width: 49%;
|
||||
}
|
25
sites/all/modules/ctools/css/ctools.css
Normal file
25
sites/all/modules/ctools/css/ctools.css
Normal file
@ -0,0 +1,25 @@
|
||||
.ctools-locked {
|
||||
color: red;
|
||||
border: 1px solid red;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
.ctools-owns-lock {
|
||||
background: #FFFFDD none repeat scroll 0 0;
|
||||
border: 1px solid #F0C020;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
a.ctools-ajaxing,
|
||||
input.ctools-ajaxing,
|
||||
button.ctools-ajaxing,
|
||||
select.ctools-ajaxing {
|
||||
padding-right: 18px !important;
|
||||
background: url(../images/status-active.gif) right center no-repeat;
|
||||
}
|
||||
|
||||
div.ctools-ajaxing {
|
||||
float: left;
|
||||
width: 18px;
|
||||
background: url(../images/status-active.gif) center center no-repeat;
|
||||
}
|
66
sites/all/modules/ctools/css/dropbutton.css
Normal file
66
sites/all/modules/ctools/css/dropbutton.css
Normal file
@ -0,0 +1,66 @@
|
||||
|
||||
.ctools-dropbutton-processed {
|
||||
padding-right: 18px;
|
||||
position: relative;
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
.ctools-dropbutton-processed.open {
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
.ctools-dropbutton-processed .ctools-content li,
|
||||
.ctools-dropbutton-processed .ctools-content a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ctools-dropbutton-processed .ctools-link {
|
||||
bottom: 0;
|
||||
display: block;
|
||||
height: auto;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
text-indent: -9999px; /* LTR */
|
||||
top: 0;
|
||||
width: 17px;
|
||||
}
|
||||
|
||||
.ctools-dropbutton-processed .ctools-link a {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ctools-dropbutton-processed .ctools-content ul {
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ctools-dropbutton-processed.open li + li {
|
||||
padding-top: 4px;
|
||||
}
|
||||
|
||||
/**
|
||||
* This creates the dropbutton arrow and inherits the link color
|
||||
*/
|
||||
.ctools-twisty {
|
||||
border-bottom-color: transparent;
|
||||
border-left-color: transparent;
|
||||
border-right-color: transparent;
|
||||
border-style: solid;
|
||||
border-width: 4px 4px 0;
|
||||
line-height: 0;
|
||||
right: 6px;
|
||||
position: absolute;
|
||||
top: 0.75em;
|
||||
}
|
||||
|
||||
.ctools-dropbutton-processed.open .ctools-twisty {
|
||||
border-bottom: 4px solid;
|
||||
border-left-color: transparent;
|
||||
border-right-color: transparent;
|
||||
border-top-color: transparent;
|
||||
top: 0.5em;
|
||||
}
|
||||
|
||||
.ctools-no-js .ctools-twisty {
|
||||
display: none;
|
||||
}
|
73
sites/all/modules/ctools/css/dropdown.css
Normal file
73
sites/all/modules/ctools/css/dropdown.css
Normal file
@ -0,0 +1,73 @@
|
||||
html.js div.ctools-dropdown div.ctools-dropdown-container {
|
||||
z-index: 1001;
|
||||
display: none;
|
||||
text-align: left;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
html.js div.ctools-dropdown div.ctools-dropdown-container ul li a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
html.js div.ctools-dropdown div.ctools-dropdown-container ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
html.js div.ctools-dropdown div.ctools-dropdown-container ul li {
|
||||
display: block;
|
||||
/* prevent excess right margin in IE */
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
padding-right: 0;
|
||||
padding-left: 0;
|
||||
background-image: none; /* prevent list backgrounds from mucking things up */
|
||||
}
|
||||
|
||||
.ctools-dropdown-no-js .ctools-dropdown-link,
|
||||
.ctools-dropdown-no-js span.text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Everything from here down is purely visual style and can be overridden. */
|
||||
|
||||
html.js div.ctools-dropdown a.ctools-dropdown-text-link {
|
||||
background: url(../images/collapsible-expanded.png) 3px 5px no-repeat;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
html.js div.ctools-dropdown div.ctools-dropdown-container {
|
||||
width: 175px;
|
||||
background: #fff;
|
||||
border: 1px solid black;
|
||||
margin: 4px 1px 0 0;
|
||||
padding: 0;
|
||||
color: #494949;
|
||||
}
|
||||
|
||||
html.js div.ctools-dropdown div.ctools-dropdown-container ul li li a {
|
||||
padding-left: 25px;
|
||||
width: 150px;
|
||||
color: #027AC6;
|
||||
}
|
||||
|
||||
html.js div.ctools-dropdown div.ctools-dropdown-container ul li a {
|
||||
text-decoration: none;
|
||||
padding-left: 5px;
|
||||
width: 170px;
|
||||
color: #027AC6;
|
||||
}
|
||||
|
||||
html.js div.ctools-dropdown div.ctools-dropdown-container ul li span {
|
||||
display: block;
|
||||
}
|
||||
|
||||
html.js div.ctools-dropdown div.ctools-dropdown-container ul li span.text {
|
||||
font-style: italic;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
html.js .ctools-dropdown-hover {
|
||||
background-color: #ECECEC;
|
||||
}
|
45
sites/all/modules/ctools/css/export-ui-list.css
Normal file
45
sites/all/modules/ctools/css/export-ui-list.css
Normal file
@ -0,0 +1,45 @@
|
||||
body form#ctools-export-ui-list-form {
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
|
||||
#ctools-export-ui-list-form .form-item {
|
||||
padding-right: 1em; /* LTR */
|
||||
float: left; /* LTR */
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#ctools-export-ui-list-items {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#edit-order-wrapper {
|
||||
clear: left; /* LTR */
|
||||
}
|
||||
|
||||
#ctools-export-ui-list-form .form-submit {
|
||||
margin-top: 1.65em;
|
||||
float: left; /* LTR */
|
||||
}
|
||||
|
||||
tr.ctools-export-ui-disabled td {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
th.ctools-export-ui-operations,
|
||||
td.ctools-export-ui-operations {
|
||||
text-align: right; /* LTR */
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* Force the background color to inherit so that the dropbuttons do not need
|
||||
a specific background color. */
|
||||
td.ctools-export-ui-operations {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
td.ctools-export-ui-operations .ctools-dropbutton {
|
||||
text-align: left; /* LTR */
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
}
|
126
sites/all/modules/ctools/css/modal.css
Normal file
126
sites/all/modules/ctools/css/modal.css
Normal file
@ -0,0 +1,126 @@
|
||||
div.ctools-modal-content {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
padding: 0;
|
||||
margin: 2px;
|
||||
border: 1px solid #000;
|
||||
width: 600px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .modal-title {
|
||||
font-size: 120%;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .modal-header {
|
||||
background-color: #2385c2;
|
||||
padding: 0 .25em 0 1em;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .modal-header a {
|
||||
color: white;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .modal-content {
|
||||
padding: 1em 1em 0 1em;
|
||||
overflow: auto;
|
||||
position: relative; /* Keeps IE7 from flowing outside the modal. */
|
||||
}
|
||||
|
||||
div.ctools-modal-content .modal-form {
|
||||
}
|
||||
|
||||
div.ctools-modal-content a.close {
|
||||
color: white;
|
||||
float: right;
|
||||
}
|
||||
|
||||
div.ctools-modal-content a.close:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
div.ctools-modal-content a.close img {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .modal-content .modal-throbber-wrapper {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .modal-content .modal-throbber-wrapper img {
|
||||
margin-top: 160px;
|
||||
}
|
||||
|
||||
/** modal forms CSS **/
|
||||
div.ctools-modal-content .form-item label {
|
||||
width: 15em;
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .form-item label.option {
|
||||
width: auto;
|
||||
float: none;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .form-item .description {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .form-item .description .tips {
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .no-float .form-item * {
|
||||
float: none;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .modal-form .no-float label {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
div.ctools-modal-content fieldset,
|
||||
div.ctools-modal-content .form-radios,
|
||||
div.ctools-modal-content .form-checkboxes {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .resizable-textarea {
|
||||
width: auto;
|
||||
margin-left: 15em;
|
||||
margin-right: 5em;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .container-inline .form-item {
|
||||
margin-right: 2em;
|
||||
}
|
||||
|
||||
#views-exposed-pane-wrapper .form-item {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
div.ctools-modal-content label.hidden-options {
|
||||
background: transparent url(../images/arrow-active.png) no-repeat right;
|
||||
height: 12px;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
div.ctools-modal-content label.expanded-options {
|
||||
background: transparent url(../images/expanded-options.png) no-repeat right;
|
||||
height: 12px;
|
||||
padding-right: 16px;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .option-text-aligner label.expanded-options,
|
||||
div.ctools-modal-content .option-text-aligner label.hidden-options {
|
||||
background: none;
|
||||
}
|
||||
|
||||
div.ctools-modal-content .dependent-options {
|
||||
padding-left: 30px;
|
||||
}
|
11
sites/all/modules/ctools/css/ruleset.css
Normal file
11
sites/all/modules/ctools/css/ruleset.css
Normal file
@ -0,0 +1,11 @@
|
||||
.ctools-right-container {
|
||||
float: right;
|
||||
padding: 0 0 0 .5em;
|
||||
margin: 0;
|
||||
width: 48.5%;
|
||||
}
|
||||
|
||||
.ctools-left-container {
|
||||
padding-right: .5em;
|
||||
width: 48.5%;
|
||||
}
|
129
sites/all/modules/ctools/css/stylizer.css
Normal file
129
sites/all/modules/ctools/css/stylizer.css
Normal file
@ -0,0 +1,129 @@
|
||||
|
||||
/* Farbtastic placement */
|
||||
.color-form {
|
||||
max-width: 50em;
|
||||
position: relative;
|
||||
min-height: 195px;
|
||||
}
|
||||
#placeholder {
|
||||
/*
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
*/
|
||||
margin: 0 auto;
|
||||
width: 195px;
|
||||
}
|
||||
|
||||
/* Palette */
|
||||
.color-form .form-item {
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
padding-left: 1em; /* LTR */
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
.color-form .form-item input {
|
||||
margin-top: .2em;
|
||||
}
|
||||
|
||||
.color-form label {
|
||||
float: left; /* LTR */
|
||||
clear: left; /* LTR */
|
||||
width: 14em;
|
||||
}
|
||||
.color-form .form-text, .color-form .form-select {
|
||||
float: left; /* LTR */
|
||||
}
|
||||
.color-form .form-text {
|
||||
text-align: center;
|
||||
margin-right: 5px; /* LTR */
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#palette .hook {
|
||||
float: left; /* LTR */
|
||||
margin-top: 3px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
#palette .up {
|
||||
background-position: 100% -27px; /* LTR */
|
||||
}
|
||||
#palette .both {
|
||||
background-position: 100% -54px; /* LTR */
|
||||
}
|
||||
|
||||
|
||||
#palette .form-item {
|
||||
width: 24em;
|
||||
}
|
||||
#palette .item-selected {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
/* Preview */
|
||||
#preview {
|
||||
width: 45%;
|
||||
float: right;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#ctools_stylizer_color_scheme_form {
|
||||
float: left;
|
||||
width: 45%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* general style for the layout-icon */
|
||||
.ctools-style-icon .caption {
|
||||
width: 100px;
|
||||
margin-bottom: 1em;
|
||||
line-height: 1em;
|
||||
text-align: center;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.ctools-style-icons .form-item {
|
||||
width: 100px;
|
||||
float: left;
|
||||
margin: 0 3px !important;
|
||||
}
|
||||
|
||||
.ctools-style-icons .form-item .ctools-style-icon {
|
||||
float: none;
|
||||
height: 150px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.ctools-style-icons .form-item label.option {
|
||||
width: 100px;
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ctools-style-icons .form-item label.option input {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.ctools-style-icons .ctools-style-category {
|
||||
height: 190px;
|
||||
}
|
||||
|
||||
.ctools-style-icons .ctools-style-category label {
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
/**
|
||||
* Stylizer font editor widget
|
||||
*/
|
||||
.ctools-stylizer-spacing-form .form-item {
|
||||
float: left;
|
||||
margin: .25em;
|
||||
}
|
||||
|
||||
#edit-font-font {
|
||||
width: 9em;
|
||||
}
|
8
sites/all/modules/ctools/css/wizard.css
Normal file
8
sites/all/modules/ctools/css/wizard.css
Normal file
@ -0,0 +1,8 @@
|
||||
|
||||
.wizard-trail {
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
.wizard-trail-current {
|
||||
font-weight: bold;
|
||||
}
|
Reference in New Issue
Block a user