Issue #3171366 by bnjmnm: Comments from variables.pcss.css create nonuseful noise in compiled css
parent
0e1565c473
commit
f4c02282eb
|
@ -13,7 +13,24 @@ module.exports = (filePath, callback) => {
|
||||||
// Transform the file.
|
// Transform the file.
|
||||||
fs.readFile(filePath, (err, css) => {
|
fs.readFile(filePath, (err, css) => {
|
||||||
postcss([
|
postcss([
|
||||||
postcssImport(),
|
postcssImport({
|
||||||
|
plugins: [
|
||||||
|
// On import, remove the comments from variables.pcss.css so they don't
|
||||||
|
// appear as useless comments at the top files that import these
|
||||||
|
// variables.
|
||||||
|
postcss.plugin('remove-unwanted-comments-from-variables', (options) => {
|
||||||
|
return css => {
|
||||||
|
if (css.source.input.file.indexOf('variables.pcss.css') !== -1) {
|
||||||
|
css.walk(node => {
|
||||||
|
if (node.type === 'comment') {
|
||||||
|
node.remove();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
}),
|
||||||
postcssCustomProperties({
|
postcssCustomProperties({
|
||||||
// Remove converted properties from the generated code. This needs to be
|
// Remove converted properties from the generated code. This needs to be
|
||||||
// set to ensure that CSS minifiers don't remove the generated values.
|
// set to ensure that CSS minifiers don't remove the generated values.
|
||||||
|
|
|
@ -9,53 +9,6 @@
|
||||||
* Generic elements.
|
* Generic elements.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
html {
|
||||||
font-family: BlinkMacSystemFont
|
font-family: BlinkMacSystemFont
|
||||||
,
|
,
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* Contains overrides for jQuery UI dialog.
|
* Contains overrides for jQuery UI dialog.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Style the dialog-off-canvas container. */
|
/* Style the dialog-off-canvas container. */
|
||||||
|
|
||||||
.ui-dialog.ui-dialog-off-canvas {
|
.ui-dialog.ui-dialog-off-canvas {
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Accordion styles.
|
* Accordion styles.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.accordion {
|
.accordion {
|
||||||
color: #222330;
|
color: #222330;
|
||||||
border: 1px solid rgba(216, 217, 224, 0.8);
|
border: 1px solid rgba(216, 217, 224, 0.8);
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* Contains Action link component and the action-links layout styles.
|
* Contains Action link component and the action-links layout styles.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Action links layout.
|
* Action links layout.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Throbber.
|
* Throbber.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.ajax-progress {
|
.ajax-progress {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* @see autocomplete.js
|
* @see autocomplete.js
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Since the autocomplete library is attached conditionally and not globally,
|
* Since the autocomplete library is attached conditionally and not globally,
|
||||||
* we can be 99% sure that the default icon will be used.
|
* we can be 99% sure that the default icon will be used.
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Breadcrumbs.
|
* Breadcrumbs.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.breadcrumb {
|
.breadcrumb {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
color: #222330;
|
color: #222330;
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* Apply these classes to button elements (<button>, <input type="button" />).
|
* Apply these classes to button elements (<button>, <input type="button" />).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Buttons.
|
* Buttons.
|
||||||
*
|
*
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Card.
|
* Card.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
@ -9,53 +9,6 @@
|
||||||
* Content header.
|
* Content header.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.content-header {
|
.content-header {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 0.75rem;
|
margin-bottom: 0.75rem;
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* @see collapse.js
|
* @see collapse.js
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Available modifiers are:
|
* Available modifiers are:
|
||||||
* - .claro-details--accordion
|
* - .claro-details--accordion
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Presentational styles for Drupal dialogs.
|
* Presentational styles for Drupal dialogs.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.ui-dialog {
|
.ui-dialog {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
|
@ -9,53 +9,6 @@
|
||||||
* Divider.
|
* Divider.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.divider {
|
.divider {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background-color: rgba(142, 146, 156, 0.5);
|
background-color: rgba(142, 146, 156, 0.5);
|
||||||
|
|
|
@ -14,53 +14,6 @@
|
||||||
* contrast mode Firefox.
|
* contrast mode Firefox.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/**
|
/**
|
||||||
* Dropbutton
|
* Dropbutton
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Entity meta.
|
* Entity meta.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.entity-meta__header {
|
.entity-meta__header {
|
||||||
padding: 0.5rem 1rem 1rem;
|
padding: 0.5rem 1rem 1rem;
|
||||||
color: #222330;
|
color: #222330;
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Fieldset styles.
|
* Fieldset styles.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.fieldset {
|
.fieldset {
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
margin: 1rem 0;
|
margin: 1rem 0;
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Extends styles of the file link.
|
* Extends styles of the file link.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.file {
|
.file {
|
||||||
min-height: 1.0625rem;
|
min-height: 1.0625rem;
|
||||||
padding-left: 1.5rem; /* LTR */
|
padding-left: 1.5rem; /* LTR */
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Checkbox and radio input elements styles for IE11 and below.
|
* Checkbox and radio input elements styles for IE11 and below.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-boolean::-ms-check {
|
.form-boolean::-ms-check {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Checkbox and radio input elements.
|
* Checkbox and radio input elements.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Form item modifiers.
|
* Form item modifiers.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Styles for multiple field tables.
|
* Styles for multiple field tables.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.field-multiple-table {
|
.field-multiple-table {
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* This includes the styles for the file widgets and the image widgets.
|
* This includes the styles for the file widgets and the image widgets.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The root element of the file/image widget.
|
* The root element of the file/image widget.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Visual styles for the Password widgets.
|
* Visual styles for the Password widgets.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/* Weak */
|
/* Weak */
|
||||||
/* Fair */
|
/* Fair */
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Select input elements.
|
* Select input elements.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-element--type-select {
|
.form-element--type-select {
|
||||||
padding-right: calc(2rem - 1px);
|
padding-right: calc(2rem - 1px);
|
||||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'%3e%3cpath fill='none' stroke-width='1.5' d='M1 1l6 6 6-6' stroke='%23545560'/%3e%3c/svg%3e");
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9'%3e%3cpath fill='none' stroke-width='1.5' d='M1 1l6 6 6-6' stroke='%23545560'/%3e%3c/svg%3e");
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Text and textarea input elements.
|
* Text and textarea input elements.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-element {
|
.form-element {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Main form and form item styles.
|
* Main form and form item styles.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
:-ms-input-placeholder {
|
:-ms-input-placeholder {
|
||||||
color: #8e929c;
|
color: #8e929c;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Image preview component.
|
* Image preview component.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Image preview.
|
* Image preview.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -11,53 +11,6 @@
|
||||||
* Overrides /core/assets/vendor/jquery.ui/themes/base/theme.css.
|
* Overrides /core/assets/vendor/jquery.ui/themes/base/theme.css.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Component containers
|
* Component containers
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Styles for the Media Library UI.
|
* Styles for the Media Library UI.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.media-library-selected-count {
|
.media-library-selected-count {
|
||||||
margin: 0 1.5rem;
|
margin: 0 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* has been resolved.
|
* has been resolved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.messages-list {
|
.messages-list {
|
||||||
margin-top: 2.5rem;
|
margin-top: 2.5rem;
|
||||||
margin-bottom: 2.5rem;
|
margin-bottom: 2.5rem;
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Page title.
|
* Page title.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.block-page-title-block {
|
.block-page-title-block {
|
||||||
margin-bottom: 0.75rem;
|
margin-bottom: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Styles for Claro's Pagination.
|
* Styles for Claro's Pagination.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/**
|
/**
|
||||||
* Pager.
|
* Pager.
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* @see progress.js
|
* @see progress.js
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.progress::after {
|
.progress::after {
|
||||||
display: table;
|
display: table;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Styling for the shortcut module.
|
* Styling for the shortcut module.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/**
|
/**
|
||||||
* Shortcut action.
|
* Shortcut action.
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Admin list and admin item modules.
|
* Admin list and admin item modules.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Admin list (wrapper of admin items).
|
* Admin list (wrapper of admin items).
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* System admin module: Panel styling.
|
* System admin module: Panel styling.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
margin-bottom: 3em;
|
margin-bottom: 3em;
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Styles for multiple file widget table.
|
* Styles for multiple file widget table.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-file-multiple-widget tbody {
|
.table-file-multiple-widget tbody {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,53 +14,6 @@
|
||||||
* @see tabledrag.js
|
* @see tabledrag.js
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
body.drag {
|
body.drag {
|
||||||
cursor: move;
|
cursor: move;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Claro styles for Tables.
|
* Claro styles for Tables.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: 1.5rem;
|
margin-top: 1.5rem;
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* @see tableselect.js
|
* @see tableselect.js
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
td.checkbox,
|
td.checkbox,
|
||||||
th.checkbox {
|
th.checkbox {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
@ -9,53 +9,6 @@
|
||||||
* Tabs.
|
* Tabs.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/**
|
/**
|
||||||
* Tabs.
|
* Tabs.
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* Replaces /core/misc/vertical-tabs.css.
|
* Replaces /core/misc/vertical-tabs.css.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Main wrapper of vertical tabs.
|
* Main wrapper of vertical tabs.
|
||||||
* This wrapper div is added by JavaScript.
|
* This wrapper div is added by JavaScript.
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Visual styles for views exposed form.
|
* Visual styles for views exposed form.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Use flexbox and some margin resets to make the fields + actions go inline.
|
* Use flexbox and some margin resets to make the fields + actions go inline.
|
||||||
*
|
*
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Breadcrumb region.
|
* Breadcrumb region.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.region-breadcrumb {
|
.region-breadcrumb {
|
||||||
min-height: 1.25rem;
|
min-height: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Cards list.
|
* Cards list.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/* Using 100% as base causes issues in IE11. */
|
/* Using 100% as base causes issues in IE11. */
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Layout styles for local actions.
|
* Layout styles for local actions.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Action link layout styles.
|
* Action link layout styles.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -9,53 +9,6 @@
|
||||||
* Layout overrides for node add/edit form.
|
* Layout overrides for node add/edit form.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-region-node-footer__content {
|
.layout-region-node-footer__content {
|
||||||
margin-top: 1.5em;
|
margin-top: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* CKEditor-native dialogs theming.
|
* CKEditor-native dialogs theming.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.cke_dialog_background_cover {
|
.cke_dialog_background_cover {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,52 +8,6 @@
|
||||||
* @file
|
* @file
|
||||||
* CKEditor appearance overrides.
|
* CKEditor appearance overrides.
|
||||||
*/
|
*/
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
:root { /* 1px */
|
:root { /* 1px */
|
||||||
/* Inner border size must be based on chrome border size. */ /* 1px */
|
/* Inner border size must be based on chrome border size. */ /* 1px */
|
||||||
/* Inner border radius must be based on chrome border radius and size. */
|
/* Inner border radius must be based on chrome border radius and size. */
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* CKEditor frame styles.
|
* CKEditor frame styles.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.cke_editable:not(.cke_editable_inline) {
|
.cke_editable:not(.cke_editable_inline) {
|
||||||
margin: 1em calc(1em - 2px);
|
margin: 1em calc(1em - 2px);
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Replacement styles for Field UI admin.
|
* Replacement styles for Field UI admin.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 'Manage fields' and 'Manage display' overviews */
|
/* 'Manage fields' and 'Manage display' overviews */
|
||||||
|
|
||||||
.field-ui-overview .region-title td {
|
.field-ui-overview .region-title td {
|
||||||
|
|
|
@ -10,53 +10,6 @@
|
||||||
* Styling for the Filter module.
|
* Styling for the Filter module.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter information under field.
|
* Filter information under field.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -12,53 +12,6 @@
|
||||||
* Replaces the styles provided by the views_ui module.
|
* Replaces the styles provided by the views_ui module.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root {
|
|
||||||
/*
|
|
||||||
* Color Palette.
|
|
||||||
*/
|
|
||||||
/* Secondary. */
|
|
||||||
/* Variations. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 10% darker than base. */ /* 20% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */ /* 5% darker than base. */ /* 10% darker than base. */
|
|
||||||
/*
|
|
||||||
* Base.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Typography.
|
|
||||||
*/ /* 1rem = 16px if font root is 100% ands browser defaults are used. */ /* ~32px */ /* ~29px */ /* ~26px */ /* ~23px */ /* ~20px */ /* 18px */ /* ~14px */ /* ~13px */ /* ~11px */
|
|
||||||
/**
|
|
||||||
* Spaces.
|
|
||||||
*/ /* 3 * 16px = 48px */ /* 1.5 * 16px = 24px */ /* 1 * 16px = 16px */ /* 0.75 * 16px = 12px */ /* 0.5 * 16px = 8px */
|
|
||||||
/*
|
|
||||||
* Common.
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Inputs.
|
|
||||||
*/ /* Absolute zero with opacity. */ /* Davy's gray with 0.6 opacity. */ /* Light gray with 0.3 opacity on white bg. */ /* Old silver with 0.5 opacity on white bg. */ /* (1/8)em ~ 2px */ /* (1/16)em ~ 1px */ /* Font size is too big to use 1rem for extrasmall line-height */ /* 7px inside the form element label. */ /* 8px with the checkbox width of 19px */
|
|
||||||
/*
|
|
||||||
* Details.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Buttons.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* jQuery.UI dropdown.
|
|
||||||
*/ /* Light gray with 0.8 opacity. */ /* Text color with 0.1 opacity. */
|
|
||||||
/**
|
|
||||||
* jQuery.UI dialog.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Progress bar.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Tabledrag icon size.
|
|
||||||
*/ /* 17px */
|
|
||||||
/**
|
|
||||||
* Ajax progress.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* Breadcrumb.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.views-admin .links {
|
.views-admin .links {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
list-style: none outside none;
|
list-style: none outside none;
|
||||||
|
|
Loading…
Reference in New Issue