From f8189ee8fddf61f09a180e6ca98e2e94aa7637aa Mon Sep 17 00:00:00 2001 From: "Carney, Sarah A" Date: Mon, 3 Dec 2018 12:00:47 -0600 Subject: [PATCH 01/21] INTERIM-175 Just in case Suitcase Interim is being used on admin pages. --- .../suitcase_megapanels/suitcase_megapanels_admin.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/panels/layouts/suitcase_megapanels/suitcase_megapanels_admin.css b/panels/layouts/suitcase_megapanels/suitcase_megapanels_admin.css index 6ce8418..5b1781f 100644 --- a/panels/layouts/suitcase_megapanels/suitcase_megapanels_admin.css +++ b/panels/layouts/suitcase_megapanels/suitcase_megapanels_admin.css @@ -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; } \ No newline at end of file From 177fef4bdba1e5c5af5bef5331f30e3b4451819d Mon Sep 17 00:00:00 2001 From: "Carney, Sarah A" Date: Mon, 10 Dec 2018 14:20:06 -0600 Subject: [PATCH 02/21] INTERIM-172 Begin working on exposed filers. --- css/suitcase.css | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/css/suitcase.css b/css/suitcase.css index 9b50026..5136245 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -541,12 +541,29 @@ input[type=submit].form-submit { padding-right: 0.5rem; } -/* Views Forms */ +/* -------------------- */ +/* ## EXPOSED FILTERS +/* -------------------- */ /* Overrides styles from views.css */ .views-exposed-widgets { display: flex; - align-items: flex-end; + flex-wrap: wrap; + align-items: flex-start; +} + +.views-exposed-form .views-exposed-widget { + float: none; + padding: 0; + margin: 0 1em 1em 0; +} + +.form-required { + color: #cc0000; +} + +.form-radios label { + font-weight: normal } .views-exposed-widgets .form-submit { @@ -554,10 +571,15 @@ input[type=submit].form-submit { margin-top: 0; } -.form-required { - color: #cc0000; +/* Date Filter */ +.views-exposed-widget.views-widget-filter-date_filter { + flex-shrink: 0; } +.date-padding { + display: flex; + align-items: center; +} /* -------------------- */ /* ## COMPONENTS From 10bfdb1ce8755b06a5a7a8b8815acdd93b5ece0f Mon Sep 17 00:00:00 2001 From: "Carney, Sarah A" Date: Mon, 10 Dec 2018 15:10:00 -0600 Subject: [PATCH 03/21] INTERIM-172 Select list margin --- css/suitcase.css | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/css/suitcase.css b/css/suitcase.css index 5136245..84487b0 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -12,26 +12,27 @@ e. Misc Typography f. Figures & Images g. Forms - 02. COMPONENTS + 02. EXPOSED FILTERS + 03. COMPONENTS a. Pagination b. Media Card c. Icon Menus d. Social Menus - 03. UTILITY - 04. GRID - 05. HEADER + 04. UTILITY + 05. GRID + 06. HEADER a. ISU Menu Bar b. Site Name c. Header Search d. Header Search Menu - 06. MENU + 07. MENU a. Sticky Menu - 07. SECONDARY MENU - 08. BREADCRUMBS - 09. ALERTS - 10. TABS + 08. SECONDARY MENU + 09. BREADCRUMBS + 10. ALERTS + 11. TABS a. Secondary Tabs - 11. FOOTER + 12. FOOTER HOME @@ -571,14 +572,20 @@ input[type=submit].form-submit { margin-top: 0; } +/* Select Lists */ +.form-type-select select { + margin-top: 0; +} + /* Date Filter */ .views-exposed-widget.views-widget-filter-date_filter { flex-shrink: 0; } -.date-padding { +.views-exposed-form .container-inline-date .date-padding { display: flex; align-items: center; + margin-top: 0.5rem; } /* -------------------- */ From 75dba3d234a52b4ff46791d9475c43f0f7f5fd74 Mon Sep 17 00:00:00 2001 From: "Carney, Sarah A" Date: Mon, 10 Dec 2018 15:32:29 -0600 Subject: [PATCH 04/21] INTERIM-172 Working with margins over fields --- css/suitcase.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/css/suitcase.css b/css/suitcase.css index 84487b0..3ec9adf 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -559,6 +559,11 @@ input[type=submit].form-submit { margin: 0 1em 1em 0; } +.views-exposed-form .form-item, +.views-exposed-form .form-submit { + margin-top: 0.5rem; +} + .form-required { color: #cc0000; } From 6e0ae90fbcabc1ea0543eefa6e72395ccc1b0baf Mon Sep 17 00:00:00 2001 From: "Carney, Sarah A" Date: Mon, 10 Dec 2018 15:55:51 -0600 Subject: [PATCH 05/21] INTERIM-172 Working with label spacing --- css/suitcase.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/css/suitcase.css b/css/suitcase.css index 3ec9adf..1524fed 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -559,15 +559,14 @@ input[type=submit].form-submit { margin: 0 1em 1em 0; } -.views-exposed-form .form-item, -.views-exposed-form .form-submit { - margin-top: 0.5rem; -} - .form-required { color: #cc0000; } +.views-exposed-form label { + margin-bottom: 0.25rem; +} + .form-radios label { font-weight: normal } @@ -580,6 +579,7 @@ input[type=submit].form-submit { /* Select Lists */ .form-type-select select { margin-top: 0; + margin-bottom: 0.5rem; } /* Date Filter */ @@ -590,7 +590,6 @@ input[type=submit].form-submit { .views-exposed-form .container-inline-date .date-padding { display: flex; align-items: center; - margin-top: 0.5rem; } /* -------------------- */ From ebbceabc57fc73c96f883e0a58012b96e6282987 Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Thu, 13 Dec 2018 16:32:02 -0600 Subject: [PATCH 06/21] 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 --- css/suitcase.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/css/suitcase.css b/css/suitcase.css index 9b50026..9060ccd 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -2830,6 +2830,19 @@ td.views-field-field-resource-screenshot img { min-width: 100px; } +.player { + padding-bottom: 56.25%; + position: relative; + height: 0; +} + +.player iframe { + position: absolute; + top: 0; left: 0; + width: 100%; + height: 100%; +} + /* ---------------------------------------- */ /* ## CONTENT EDITING /* ---------------------------------------- */ From 7aaa74a4c767f8e42d11855929dc0fb603aabd90 Mon Sep 17 00:00:00 2001 From: "Carney, Sarah A" Date: Mon, 17 Dec 2018 11:49:57 -0600 Subject: [PATCH 07/21] INTERIM-172 Adjust alignment with the submit buttons --- css/suitcase.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/css/suitcase.css b/css/suitcase.css index 1524fed..bf49f8f 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -504,8 +504,9 @@ input[type="time"], input[type="url"], input[type="week"] { height: auto; + min-height: 2.25rem; max-width: 100%; - padding: 0.5rem; + padding: 0.525rem; border: 1px solid #ddd; border-radius: 2px; } @@ -571,9 +572,9 @@ input[type=submit].form-submit { font-weight: normal } -.views-exposed-widgets .form-submit { +.views-exposed-form .views-exposed-widget .form-submit { height: 2.25rem; - margin-top: 0; + margin-top: 1.75rem; } /* Select Lists */ From 8ae77e98cdcc8fb729a1f81545b4b421fd1c7b51 Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Fri, 21 Dec 2018 10:00:18 -0600 Subject: [PATCH 08/21] INTERIM-178 Adjust padding on the top and bottom full Mega Panels panes (#187) --- css/suitcase.css | 14 ++++++++++++++ .../suitcase-megapanels.tpl.php | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/css/suitcase.css b/css/suitcase.css index 520e4dd..99df533 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -1701,6 +1701,20 @@ ul.tabs.secondary img { margin-bottom: 1rem; } +.megapanels-wrapper_full_top, +.megapanels-wrapper_full_bottom { + margin-right: 0.5rem; + margin-left: 0.5rem; +} + +@media (max-width: 740px) { + .megapanels-wrapper_full_top, + .megapanels-wrapper_full_bottom { + margin-right: 2rem; + margin-left: 2rem; + } +} + @media (min-width: 1141px) { .megapanels-pane:first-child:nth-last-child(4), diff --git a/panels/layouts/suitcase_megapanels/suitcase-megapanels.tpl.php b/panels/layouts/suitcase_megapanels/suitcase-megapanels.tpl.php index 9b2779a..d616eb8 100644 --- a/panels/layouts/suitcase_megapanels/suitcase-megapanels.tpl.php +++ b/panels/layouts/suitcase_megapanels/suitcase-megapanels.tpl.php @@ -131,7 +131,7 @@ -
+
From 0ac227510604ee320ab9bbbbc32eeaf5a9927f35 Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Wed, 9 Jan 2019 14:24:23 -0600 Subject: [PATCH 09/21] Interim 180 (#188) * INTERIM-180 Add classes for full-width layout * INTERIM-180 Adjust spacing --- css/suitcase.css | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/css/suitcase.css b/css/suitcase.css index 99df533..74243e8 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -1743,6 +1743,65 @@ ul.tabs.secondary img { } } +/* --- Full Width Option --- */ +/* Add these classes to the Panel Page in General Settings. Supplement + * with the CSS code field. + */ + +.megapanels_full-width .zone-content { + max-width: 100% !important; + width: 100%; + margin: 0; +} + +.megapanels_full-width .grid-12 { + width: 100% !important; + margin: 0; +} + +.megapanels_full-width .megapanels-wrapper_full_top, +.megapanels_full-width .megapanels-wrapper_full_bottom { + margin-right: 0; + margin-left: 0; +} + +.megapanels_full-width.megapanels_content-contained .megapanels-row { + +} + +/* Mimic container-12 */ + +@media (max-width: 740px) { + .megapanels_full-width.megapanels_content-contained .megapanels-row { + margin-right: 0; + margin-left: 0; + } +} +@media (min-width: 740px) { + .megapanels_full-width.megapanels_content-contained .megapanels-row { + width: 92%; + margin-left: 4%; + margin-right: 4%; + } +} + +@media (min-width: 1200px) { + .megapanels_full-width.megapanels_content-contained .megapanels-row { + width: 92%; + max-width: calc(1200px + 2rem); + margin-left: auto !important; + margin-right: auto !important; + } +} + +.megapanels_full-width.megapanels_content-contained .suitcase_megapanels { + margin: 0; +} + +.megapanels_full-width.megapanels_content-contained .megapanels-pane { + margin: 0; +} + /* ---------------------------------------- */ /* ## BLOCKS /* ---------------------------------------- */ From 9b53ea041f8c452a0078978da9b3958581e27aac Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Thu, 24 Jan 2019 14:06:18 -0600 Subject: [PATCH 10/21] LUGG-1160 Override luggage_video CSS for sizing videos to be more responsive on suitcase_interim (#189) --- css/suitcase.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/css/suitcase.css b/css/suitcase.css index 74243e8..b972341 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -2950,6 +2950,16 @@ td.views-field-field-resource-screenshot img { height: 100%; } +/* Strong override for luggage_video.css */ + +.field-item .embedded-video { + position: static !important; + padding-bottom: 0; + padding-top: 0; + height: auto; + overflow: visible; +} + /* ---------------------------------------- */ /* ## CONTENT EDITING /* ---------------------------------------- */ From eaa9e3caf7268499017c5875ad2bea426bff28b3 Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Wed, 20 Feb 2019 09:37:18 -0600 Subject: [PATCH 11/21] LUGG-1165 Duplicate content template to add ARIA role to alerts. (#190) --- templates/zone--content.tpl.php | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 templates/zone--content.tpl.php diff --git a/templates/zone--content.tpl.php b/templates/zone--content.tpl.php new file mode 100644 index 0000000..3c06de7 --- /dev/null +++ b/templates/zone--content.tpl.php @@ -0,0 +1,11 @@ +> + > + + + + +
+ + +
+
From 29e2abb8c183012eb7f70a84a693cec20fa22c5f Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Thu, 28 Feb 2019 09:44:58 -0600 Subject: [PATCH 12/21] 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 --- ckeditor.css | 15 +++++++++++++++ css/suitcase.css | 22 ++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/ckeditor.css b/ckeditor.css index 3d52a4e..796615a 100644 --- a/ckeditor.css +++ b/ckeditor.css @@ -25,6 +25,21 @@ blockquote { blockquote p { margin-top: 0; } +a.link-button { + display: inline-block; + padding: 0.25rem 0.5rem; + color: #ffffff; + font-weight: 700; + text-decoration: none; + background: #cc0000; + border-radius: 3px; + transition: background 0.2s ease; +} + +a.link-button:hover { + background: #333333; +} + /* -------------------- */ /* ## General indentation & positioning classes */ /* -------------------- */ diff --git a/css/suitcase.css b/css/suitcase.css index b972341..a609a94 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -209,6 +209,28 @@ a:hover { margin-bottom: 1rem; } +/* --- Content Buttons --- */ +/* Add the link-button class to a link in CKEditor to style it like + * a button. Remember, the link-button needs to be added to the list of + * allowed classes in the Text Formatter. + */ + +a.link-button { + display: inline-block; + padding: 0.25rem 0.5rem; + color: #ffffff; + font-weight: 700; + text-decoration: none; + background: #cc0000; + border-radius: 3px; + transition: background 0.2s ease; +} + +a.link-button:hover { + background: #333333; +} + + /* --- Read More --- */ .read-more { From c69a8322ad4b83c17cec55cb39b8d585bf5774bb Mon Sep 17 00:00:00 2001 From: Angela McMahon Date: Tue, 2 Jul 2019 09:34:16 -0500 Subject: [PATCH 13/21] LUGG-1187 Add link for Workday (#192) --- templates/region--isu_menu.tpl.php | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/region--isu_menu.tpl.php b/templates/region--isu_menu.tpl.php index a6021d3..b8d539e 100644 --- a/templates/region--isu_menu.tpl.php +++ b/templates/region--isu_menu.tpl.php @@ -54,6 +54,7 @@
  • CyBox
  • CyMail
  • Outlook
  • +
  • Workday
  • More Sign Ons...
  • From 396227140415b652a4ede0bb2198107e1234209c Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Mon, 22 Jul 2019 13:46:55 -0500 Subject: [PATCH 14/21] INTERIM-184 Remove the responsive-table class from colspan/rowspan tables so they can side-scroll on mobile. (#194) --- js/suitcase_responsive_tables.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/js/suitcase_responsive_tables.js b/js/suitcase_responsive_tables.js index 9509828..a9e255f 100644 --- a/js/suitcase_responsive_tables.js +++ b/js/suitcase_responsive_tables.js @@ -25,18 +25,21 @@ structure and assign classes. var bothHeader = $(table.has('tr:nth-of-type(1) th:nth-of-type(2)').has('tr:nth-of-type(2) th:nth-of-type(1)')); bothHeader.attr('class', 'table-both'); + /* --- All Responsive Tables --- */ + table.addClass('responsive-table'); + /* --- Colspan or Rowspan --- */ var tdColFreeze = $(table.has('td[colspan]')); var thColFreeze = $(table.has('th[colspan]')); var tdRowFreeze = $(table.has('td[rowspan]')); var thRowFreeze = $(table.has('th[rowspan]')); - tdColFreeze.attr('class', 'table-freeze'); - thColFreeze.attr('class', 'table-freeze'); - tdRowFreeze.attr('class', 'table-freeze'); - thRowFreeze.attr('class', 'table-freeze'); + tdColFreeze.attr('class', 'table-freeze').removeClass('responsive-table'); + thColFreeze.attr('class', 'table-freeze').removeClass('responsive-table'); + tdRowFreeze.attr('class', 'table-freeze').removeClass('responsive-table'); + thRowFreeze.attr('class', 'table-freeze').removeClass('responsive-table'); + + - /* --- All Responsive Tables --- */ - table.addClass('responsive-table'); /* --------------------- Now apply any jQuery needed From 20bd10c0d7f3bc0dcf7fb01b804ffc98203c542e Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Tue, 1 Oct 2019 14:56:23 -0500 Subject: [PATCH 15/21] INTERIM-186 Improve external link wrapping (#196) --- css/suitcase.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/css/suitcase.css b/css/suitcase.css index a609a94..5a094f4 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -287,10 +287,16 @@ a.link-button:hover { font-family: 'FontAwesome'; font-size: 0.75em; display: inline-block; + width: 2rem; + margin-right: -2rem; /* Same as width. Helps prevent wrapping */ margin-left: 4px; vertical-align: text-top; } +#section-content a.external p { + display: inherit; +} + /* Exceptions */ #section-content .pane-menu-menu-social a.external:after, From 74f21f9d30d2fa5688b2b9a6e23dc064347ee5f8 Mon Sep 17 00:00:00 2001 From: Angela McMahon Date: Wed, 2 Oct 2019 12:49:20 -0500 Subject: [PATCH 16/21] INTERIM-103 Make nameplate logo alt text unique (#197) * INTERIM-103 Make nameplate logo alt text unique * INTERIM-103 Update logo alt text --- suitcase_interim.info | 2 +- theme-settings.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/suitcase_interim.info b/suitcase_interim.info index d1eaa0c..7043a9e 100644 --- a/suitcase_interim.info +++ b/suitcase_interim.info @@ -53,7 +53,7 @@ settings[toggle_secondary_menu] = '1' settings[default_logo] = '1' settings[logo_path] = 'sites/all/themes/suitcase_interim/images/isu.svg' settings[logo_upload] = '' -settings[suitcase_interim_config_isu_nameplate_alt_text] = 'Iowa State University' +settings[suitcase_interim_config_isu_nameplate_alt_text] = 'Iowa State University Logo' settings[default_favicon] = '0' settings[favicon_path] = 'sites/all/themes/suitcase_interim/images/favicon.ico' settings[favicon_upload] = '' diff --git a/theme-settings.php b/theme-settings.php index 7d85305..a71151f 100644 --- a/theme-settings.php +++ b/theme-settings.php @@ -88,8 +88,8 @@ function suitcase_interim_form_system_theme_settings_alter(&$form, &$form_state) $form['suitcase_interim_config']['suitcase_interim_config_logo']['settings']['suitcase_interim_config_isu_nameplate_alt_text'] = array( '#type' => 'textfield', '#title' => t('Wordmark Alt Text'), - '#description' => t('Alt text for the site\'s wordmark. Defaults to Iowa State University.'), - '#default_value' => variable_get('suitcase_interim_config_isu_nameplate_alt_text', 'Iowa State University'), + '#description' => t('Alt text for the site\'s wordmark. Defaults to Iowa State University Logo.'), + '#default_value' => variable_get('suitcase_interim_config_isu_nameplate_alt_text', 'Iowa State University Logo'), '#weight' => 3, ); From 484cad1e3fbc8ddd601623545f17a9b2bdb40fa2 Mon Sep 17 00:00:00 2001 From: Angela McMahon Date: Tue, 22 Oct 2019 10:50:11 -0500 Subject: [PATCH 17/21] INTERIM-187 Remove outdated nameplate title text (#199) --- templates/region--branding.tpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/region--branding.tpl.php b/templates/region--branding.tpl.php index 7f67e63..53dbdf4 100644 --- a/templates/region--branding.tpl.php +++ b/templates/region--branding.tpl.php @@ -4,7 +4,7 @@ - <?php print $wordmark_alt_text; ?> + <?php print $wordmark_alt_text; ?> <?php print $wordmark_alt_text; ?> From 7fd3d3fcd85c84fc0572072abc4c0e7c3b4f42ba Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Tue, 3 Mar 2020 11:39:06 -0600 Subject: [PATCH 18/21] LUGG-1203 Add LinkedIn (#200) * LUGG-1203 Add LinkedIn icon as an option * LUGG-1203 Add LinkedIn hover color --- css/suitcase.css | 5 +++++ template.php | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/css/suitcase.css b/css/suitcase.css index 5a094f4..a4ad82e 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -807,6 +807,11 @@ input[type=submit].form-submit { color: #f77737; } +.block-menu-social .menu a:hover .fa-linkedin-square, +.pane-menu-menu-social .menu a:hover .fa-linkedin-square { + color: #2867B2; +} + /* -------------------- */ /* Image link blocks */ diff --git a/template.php b/template.php index 402aef1..fc4c6d1 100644 --- a/template.php +++ b/template.php @@ -350,7 +350,8 @@ function suitcase_interim_menu_link__menu_social($variables) { 'github' => 'fa-github-square', 'rss' => 'fa-rss-square', 'snapchat' => 'fa-snapchat-square', - 'flickr' => 'fa-flickr' + 'flickr' => 'fa-flickr', + 'linkedin' => 'fa-linkedin-square' ); $font_awesome_icon = ''; From a39ba3956457500ce7d15308df7c64c08e4574f5 Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Tue, 3 Mar 2020 11:44:09 -0600 Subject: [PATCH 19/21] INTERIM-179 Fix numbered flexslider button alignment on safari (#201) --- css/suitcase.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/suitcase.css b/css/suitcase.css index a4ad82e..ea02dbd 100644 --- a/css/suitcase.css +++ b/css/suitcase.css @@ -1567,6 +1567,7 @@ ul.tabs.secondary img { } .flexslider-numbered .flex-pauseplay { + display: inline-flex; height: 2.5rem; margin-top: -2.5rem; left: 0; From 80dc73ba50258584cda11ede8608d79ca2580bdb Mon Sep 17 00:00:00 2001 From: Sarah Carney Date: Tue, 3 Mar 2020 12:14:30 -0600 Subject: [PATCH 20/21] INTERIM-189 Adjusted sizing and spacing of images and figures in CKeditor (#202) --- ckeditor.css | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/ckeditor.css b/ckeditor.css index 796615a..b5765ab 100644 --- a/ckeditor.css +++ b/ckeditor.css @@ -81,11 +81,10 @@ a.link-button:hover { figure.image { display: table; - margin: 1rem; + margin: 0; } figure.image img { - max-width: 100%; display: block; margin: 0; } @@ -110,9 +109,15 @@ figure.image br { display: none; } -figure.image.floated-left { margin: 0.25rem 1rem 0.25rem 0; } +figure.image.floated-left, +.cke_widget_image[style*="float: left"] { + margin: 0.25rem 1rem 0.25rem 0; +} -figure.image.floated-right { margin: 0.25rem 0 0.25rem 1rem; } +figure.image.floated-right, +.cke_widget_image[style*="float: right"] { + margin: 0.25rem 0 0.25rem 1rem; +} figure.image.floated-left img, figure.image.floated-right img { margin: 0; } From 1fa9ab528a408e0e07c76a0827016d5f763f2206 Mon Sep 17 00:00:00 2001 From: Angela McMahon Date: Tue, 3 Mar 2020 12:30:15 -0600 Subject: [PATCH 21/21] Update version number --- suitcase_interim.info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suitcase_interim.info b/suitcase_interim.info index 7043a9e..5c2d246 100644 --- a/suitcase_interim.info +++ b/suitcase_interim.info @@ -4,7 +4,7 @@ core = '7.x' engine = 'phptemplate' screenshot = 'screenshot.png' base theme = 'omega' -version = '1.2.0' +version = '1.2.2' plugins[panels][layouts] = panels/layouts plugins[panels][styles] = panels/styles regions[page_top] = 'Page Top'