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.
|
||||
fs.readFile(filePath, (err, css) => {
|
||||
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({
|
||||
// Remove converted properties from the generated code. This needs to be
|
||||
// set to ensure that CSS minifiers don't remove the generated values.
|
||||
|
|
|
@ -9,53 +9,6 @@
|
|||
* 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 {
|
||||
font-family: BlinkMacSystemFont
|
||||
,
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* 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. */
|
||||
|
||||
.ui-dialog.ui-dialog-off-canvas {
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
color: #222330;
|
||||
border: 1px solid rgba(216, 217, 224, 0.8);
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* 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.
|
||||
*/
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
display: inline-block;
|
||||
}
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* @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,
|
||||
* we can be 99% sure that the default icon will be used.
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
padding: 0;
|
||||
color: #222330;
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* 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.
|
||||
*
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -9,53 +9,6 @@
|
|||
* 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 {
|
||||
overflow: hidden;
|
||||
margin-bottom: 0.75rem;
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* @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:
|
||||
* - .claro-details--accordion
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
|
|
|
@ -9,53 +9,6 @@
|
|||
* 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 {
|
||||
height: 1px;
|
||||
background-color: rgba(142, 146, 156, 0.5);
|
||||
|
|
|
@ -14,53 +14,6 @@
|
|||
* 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 {
|
||||
/**
|
||||
* Dropbutton
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
padding: 0.5rem 1rem 1rem;
|
||||
color: #222330;
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
min-width: 0;
|
||||
margin: 1rem 0;
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
min-height: 1.0625rem;
|
||||
padding-left: 1.5rem; /* LTR */
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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.
|
||||
*/
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* 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.
|
||||
*/
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
/* Weak */
|
||||
/* Fair */
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
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");
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
box-sizing: border-box;
|
||||
max-width: 100%;
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
color: #8e929c;
|
||||
}
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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.
|
||||
*/
|
||||
|
|
|
@ -11,53 +11,6 @@
|
|||
* 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
|
||||
*/
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
margin: 0 1.5rem;
|
||||
}
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* 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 {
|
||||
margin-top: 2.5rem;
|
||||
margin-bottom: 2.5rem;
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
/**
|
||||
* Pager.
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* @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 {
|
||||
display: table;
|
||||
clear: both;
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
/**
|
||||
* Shortcut action.
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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).
|
||||
*/
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 3em;
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
|
|
@ -14,53 +14,6 @@
|
|||
* @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 {
|
||||
cursor: move;
|
||||
}
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
width: 100%;
|
||||
margin-top: 1.5rem;
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* @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,
|
||||
th.checkbox {
|
||||
text-align: center;
|
||||
|
|
|
@ -9,53 +9,6 @@
|
|||
* 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 {
|
||||
/**
|
||||
* Tabs.
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* 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.
|
||||
* This wrapper div is added by JavaScript.
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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.
|
||||
*
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
min-height: 1.25rem;
|
||||
}
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
/* Using 100% as base causes issues in IE11. */
|
||||
}
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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.
|
||||
*/
|
||||
|
|
|
@ -9,53 +9,6 @@
|
|||
* 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 {
|
||||
margin-top: 1.5em;
|
||||
}
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
@ -8,52 +8,6 @@
|
|||
* @file
|
||||
* 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 */
|
||||
/* Inner border size must be based on chrome border size. */ /* 1px */
|
||||
/* Inner border radius must be based on chrome border radius and size. */
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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) {
|
||||
margin: 1em calc(1em - 2px);
|
||||
}
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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 */
|
||||
|
||||
.field-ui-overview .region-title td {
|
||||
|
|
|
@ -10,53 +10,6 @@
|
|||
* 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.
|
||||
*/
|
||||
|
|
|
@ -12,53 +12,6 @@
|
|||
* 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 {
|
||||
margin: 0;
|
||||
list-style: none outside none;
|
||||
|
|
Loading…
Reference in New Issue