Skip to content
Snippets Groups Projects
Verified Commit e52c916f authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3332473 by Mithun S, Gauravvvv, rupeshghar, smustgrave, lauriii:...

Issue #3332473 by Mithun S, Gauravvvv, rupeshghar, smustgrave, lauriii: Refactor Claro's table--file-multiple-widget stylesheet

(cherry picked from commit 901d6d8a)
parent 002bca92
Branches
Tags
29 merge requests!10663Issue #3495778: Update phpdoc in FileSaveHtaccessLoggingTest,!10451Issue #3472458 by watergate, smustgrave: CKEditor 5 show blocks label is not translated,!103032838547 Fix punctuation rules for inline label suffix colon with CSS only,!10150Issue #3467294 by quietone, nod_, smustgrave, catch, longwave: Change string...,!10130Resolve #3480321 "Second level menu",!9936Issue #3483087: Check the module:// prefix in the translation server path and replace it with the actual module path,!9933Issue #3394728 by ankondrat4: Undefined array key "#prefix" and deprecated function: explode() in Drupal\file\Element\ManagedFile::uploadAjaxCallback(),!9914Issue #3451136 by quietone, gapple, ghost of drupal past: Improve...,!9882Draft: Issue #3481777 In bulk_form ensure the triggering element is the bulk_form button,!9839Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9815Issue #3480025: There is no way to remove entity cache items,!9757Issue #3478869 Add "All" or overview links to parent links,!9752Issue #3439910 by pooja_sharma, vensires: Fix Toolbar tests that rely on UID1's super user behavior,!9749Issue #3439910 by pooja_sharma, vensires: Fix Toolbar tests that rely on UID1's super user behavior,!9678Issue #3465132 by catch, Spokje, nod_: Show test run time by class in run-tests.sh output,!9578Issue #3304746 by scott_euser, casey, smustgrave: BigPipe cannot handle (GET)...,!9449Issue #3344041: Allow textarea widgets to be used for text (formatted) fields,!8945🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥...,!8893Resolve #3444391 "Navigation center sm logo",!8772Issue #3445909 by seanB, smustgrave, alexpott, catch: Add static caching to...,!8723Make dblog entities,!8708Filter out disabled display extenders on save,!8691#3459116 - Update Manager Settings: Validate same email address added multiple times,!8665Issue #3449743 by catch: Try to optimize test ordering when run-tests.sh is...,!8598Draft: Issue #3458215: Migrate Toolbar button to SDC,!8572Reorder checkboxes on "Development settings" page,!8538Issue #3457009: Fixing xxception message thrown.,!8505Issue #3456528: _node_mass_update_batch_process fails during user cancel when revision is deleted,!8482Resolve #3456202 "Phpunit tests support"
Pipeline #204145 passed with warnings
Pipeline: drupal

#204157

    Pipeline: drupal

    #204148

      ......@@ -28,33 +28,23 @@
      padding: 0;
      }
      .table-file-multiple-widget .tabledrag-handle {
      float: left; /* LTR */
      }
      [dir="rtl"] .table-file-multiple-widget .tabledrag-handle {
      float: right;
      .table-file-multiple-widget .tabledrag-handle,
      .table-file-multiple-widget .tabledrag-changed {
      float: left;
      }
      .table-file-multiple-widget .tabledrag-changed {
      float: left; /* LTR */
      line-height: calc(var(--tabledrag-handle-icon-size) + calc(var(--space-xs) * 2));
      }
      [dir="rtl"] .table-file-multiple-widget .tabledrag-changed {
      float: left;
      }
      .table-file-multiple-widget td {
      height: calc(var(--space-m) * 3);
      padding-block: var(--space-m);
      }
      .table-file-multiple-widget td > :first-child {
      margin-top: 0;
      }
      .table-file-multiple-widget td > :first-child,
      .table-file-multiple-widget td > :last-child {
      margin-bottom: 0;
      margin-block: 0;
      }
      .table-file-multiple-widget .button.button:only-child {
      ......@@ -68,20 +58,19 @@
      font-size: var(--font-size-s);
      }
      .table-file-multiple-widget td {
      padding-top: var(--space-m);
      padding-bottom: var(--space-m);
      }
      .table-file-multiple-widget .tabledrag-cell {
      padding-top: var(--space-xs);
      padding-bottom: var(--space-xs);
      padding-block: var(--space-xs);
      }
      .table-file-multiple-widget .checkbox .form-type--boolean {
      line-height: calc(var(--space-m) * 3);
      }
      [dir="rtl"] .table-file-multiple-widget .tabledrag-handle,
      [dir="rtl"] .table-file-multiple-widget .tabledrag-changed {
      float: right;
      }
      .no-touchevents .table-file-multiple-widget .checkbox .form-type--boolean {
      line-height: var(--line-height);
      }
      ......@@ -101,7 +90,7 @@
      */
      .table-file-multiple-widget--no-upload > tbody:last-child > tr:last-child {
      border-bottom: 0;
      border-block-end: 0;
      }
      /**
      ......@@ -110,12 +99,9 @@
      @media screen and (max-width: 37.5em) {
      .claro-details__wrapper .file-widget-multiple__table-wrapper {
      margin-right: calc(var(--space-m) * -1);
      margin-left: calc(var(--space-m) * -1);
      margin-inline: calc(var(--space-m) * -1);
      }
      .claro-details__wrapper .file-widget-multiple__table-wrapper > :not(table) {
      margin-right: var(--space-m);
      margin-left: var(--space-m);
      margin-inline: var(--space-m);
      }
      }
      ......@@ -3,73 +3,59 @@
      * Styles for multiple file widget table.
      */
      .table-file-multiple-widget tbody {
      .table-file-multiple-widget {
      & tbody {
      vertical-align: top;
      }
      .table-file-multiple-widget .tabledrag-cell-content {
      & .tabledrag-cell-content {
      position: relative;
      display: block;
      height: auto;
      }
      .table-file-multiple-widget .tabledrag-cell-content > * {
      & > * {
      display: block;
      }
      .table-file-multiple-widget .tabledrag-cell-content__item {
      padding: 0;
      }
      .table-file-multiple-widget .tabledrag-handle {
      float: left; /* LTR */
      & .tabledrag-cell-content__item {
      padding: 0;
      }
      [dir="rtl"] .table-file-multiple-widget .tabledrag-handle {
      float: right;
      & .tabledrag-handle,
      & .tabledrag-changed {
      float: left;
      }
      .table-file-multiple-widget .tabledrag-changed {
      float: left; /* LTR */
      & .tabledrag-changed {
      line-height: calc(var(--tabledrag-handle-icon-size) + calc(var(--space-xs) * 2));
      }
      [dir="rtl"] .table-file-multiple-widget .tabledrag-changed {
      float: left;
      }
      .table-file-multiple-widget td {
      & td {
      height: calc(var(--space-m) * 3);
      padding-block: var(--space-m);
      & > :first-child,
      & > :last-child {
      margin-block: 0;
      }
      .table-file-multiple-widget td > :first-child {
      margin-top: 0;
      }
      .table-file-multiple-widget td > :last-child {
      margin-bottom: 0;
      }
      .table-file-multiple-widget .button.button:only-child {
      & .button.button:only-child {
      margin: 0;
      }
      .table-file-multiple-widget th {
      & th {
      height: calc(var(--space-m) * 2);
      color: var(--color-gray-800);
      background: var(--color-gray-050);
      font-size: var(--font-size-s);
      }
      .table-file-multiple-widget td {
      padding-top: var(--space-m);
      padding-bottom: var(--space-m);
      & .tabledrag-cell {
      padding-block: var(--space-xs);
      }
      & .checkbox .form-type--boolean {
      line-height: calc(var(--space-m) * 3);
      }
      .table-file-multiple-widget .tabledrag-cell {
      padding-top: var(--space-xs);
      padding-bottom: var(--space-xs);
      }
      .table-file-multiple-widget .checkbox .form-type--boolean {
      line-height: calc(var(--space-m) * 3);
      [dir="rtl"] .table-file-multiple-widget {
      & .tabledrag-handle,
      & .tabledrag-changed {
      float: right;
      }
      }
      .no-touchevents .table-file-multiple-widget .checkbox .form-type--boolean {
      ......@@ -89,7 +75,7 @@
      * (A full file widget with limited cardinality.)
      */
      .table-file-multiple-widget--no-upload > tbody:last-child > tr:last-child {
      border-bottom: 0;
      border-block-end: 0;
      }
      /**
      ......@@ -97,12 +83,9 @@
      */
      @media screen and (max-width: 37.5em) {
      .claro-details__wrapper .file-widget-multiple__table-wrapper {
      margin-right: calc(var(--space-m) * -1);
      margin-left: calc(var(--space-m) * -1);
      margin-inline: calc(var(--space-m) * -1);
      & > :not(table) {
      margin-inline: var(--space-m);
      }
      .claro-details__wrapper .file-widget-multiple__table-wrapper > :not(table) {
      margin-right: var(--space-m);
      margin-left: var(--space-m);
      }
      }
      0% Loading or .
      You are about to add 0 people to the discussion. Proceed with caution.
      Please register or to comment