-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* INTERIM-175 Just in case Suitcase Interim is being used on admin pages. * INTERIM-172 Begin working on exposed filers. * INTERIM-172 Select list margin * INTERIM-172 Working with margins over fields * INTERIM-172 Working with label spacing * INTERIM-173 Remove black bars above/below embedded videos (#185) * INTERIM-173 Remove black bars above/below embedded videos * INTERIM-173 Make sure video doesn't overflow its container * INTERIM-172 Adjust alignment with the submit buttons * INTERIM-178 Adjust padding on the top and bottom full Mega Panels panes (#187) * Interim 180 (#188) * INTERIM-180 Add classes for full-width layout * INTERIM-180 Adjust spacing * LUGG-1160 Override luggage_video CSS for sizing videos to be more responsive on suitcase_interim (#189) * LUGG-1165 Duplicate content template to add ARIA role to alerts. (#190) * INTERIM-29 Add a class to make a content link look like a button. (#191) * INTERIM-29 Add a class to make a content link look like a button. * INTERIM-29 Duplicate the button style in ckeditor * LUGG-1187 Add link for Workday (#192)
- Loading branch information
Showing
6 changed files
with
202 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 6 additions & 1 deletion
7
panels/layouts/suitcase_megapanels/suitcase_megapanels_admin.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
.megapanels-row { | ||
display: flex; | ||
flex-wrap: nowrap !important; | ||
margin: 0 !important; | ||
} | ||
|
||
.megapanels-pane { | ||
flex: 1 1 100%; | ||
flex: 1 1 100% !important; | ||
min-width: 0 !important; | ||
margin: 0 !important; | ||
padding: 0 !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php if ($wrapper): ?><div<?php print $attributes; ?>><?php endif; ?> | ||
<div<?php print $content_attributes; ?>> | ||
<?php if ($breadcrumb): ?> | ||
<div id="breadcrumb" class="grid-<?php print $columns; ?>"><?php print $breadcrumb; ?></div> | ||
<?php endif; ?> | ||
<?php if ($messages): ?> | ||
<div id="messages" role="status" class="grid-<?php print $columns; ?>"><?php print $messages; ?></div> | ||
<?php endif; ?> | ||
<?php print $content; ?> | ||
</div> | ||
<?php if ($wrapper): ?></div><?php endif; ?> |