Home
last modified time | relevance | path

Searched refs:BackgroundAttribute (Results 1 – 9 of 9) sorted by relevance

/plugin/combo/ComboStrap/
H A DSkin.php6 use ComboStrap\TagAttribute\BackgroundAttribute; alias
25 BackgroundAttribute::BACKGROUND_COLOR => "#d1ecf1",
30 BackgroundAttribute::BACKGROUND_COLOR => "#fff79f",
35 BackgroundAttribute::BACKGROUND_COLOR => "#fff3cd",
40 BackgroundAttribute::BACKGROUND_COLOR => "#28a745",
45 BackgroundAttribute::BACKGROUND_COLOR => "#dc3545",
50 BackgroundAttribute::BACKGROUND_COLOR => "#343a40",
55 BackgroundAttribute::BACKGROUND_COLOR => "#f8f9fa",
66 BackgroundAttribute::BACKGROUND_COLOR => $primaryColorRgbHex,
71 BackgroundAttribute
[all...]
H A DJumbotronTag.php6 use ComboStrap\TagAttribute\BackgroundAttribute; alias
45 BackgroundAttribute::BACKGROUND_COLOR => "#e9ecef",
H A DLazyLoad.php15 use ComboStrap\TagAttribute\BackgroundAttribute; alias
121 if ($attributes->hasComponentAttribute(BackgroundAttribute::BACKGROUND_COLOR)) {
122 $placeholderColor = $attributes->getValueAndRemove(BackgroundAttribute::BACKGROUND_COLOR);
H A DOpacity.php7 use ComboStrap\TagAttribute\BackgroundAttribute; alias
17 * For a background image, the opacity is set on the {@link BackgroundAttribute::processBackgroundAttributes()}
H A DTagAttributes.php18 use ComboStrap\TagAttribute\BackgroundAttribute; alias
583 BackgroundAttribute::processBackgroundAttributes($this);
/plugin/combo/ComboStrap/Tag/
H A DBackgroundTag.php15 use ComboStrap\TagAttribute\BackgroundAttribute; alias
23 * but collects data to create a {@link BackgroundAttribute}
58 $attributes->addComponentAttributeValue(BackgroundAttribute::BACKGROUND_COLOR, $color);
91 if ($parentCall->getTagName() == BackgroundAttribute::BACKGROUNDS) {
102 if ($backgroundAttributes->hasComponentAttribute(BackgroundAttribute::BACKGROUND_IMAGE)) {
106 $backgrounds = $parentCall->getAttribute(BackgroundAttribute::BACKGROUNDS);
112 $parentCall->addAttribute(BackgroundAttribute::BACKGROUNDS, $backgrounds);
124 $backgroundImage = $backgroundAttributes->getComponentAttributeValue(BackgroundAttribute::BACKGROUND_IMAGE);
125 $openingCall->setAttribute(BackgroundAttribute::BACKGROUND_IMAGE, $backgroundImage);
170 $backgroundImageAttribute = BackgroundAttribute
[all...]
/plugin/combo/syntax/
H A Dnote.php9 use ComboStrap\TagAttribute\BackgroundAttribute; alias
179 if (!$attributes->hasComponentAttribute(BackgroundAttribute::BACKGROUND_COLOR)) {
180 $attributes->addComponentAttributeValue(BackgroundAttribute::BACKGROUND_COLOR, "#fff79f"); // lum - 195
H A Dmenubar.php11 use ComboStrap\TagAttribute\BackgroundAttribute; alias
164 $default[BackgroundAttribute::BACKGROUND_COLOR] = 'light';
/plugin/combo/ComboStrap/TagAttribute/
H A DBackgroundAttribute.php24 class BackgroundAttribute class