Commit 2c9aa238 authored by Serhii Myronets's avatar Serhii Myronets Committed by serhii.myronets
Browse files

Issue #3273919 improve font type

parent 4c8bcc22
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -341,6 +341,7 @@ h4, .h4 {

h5, .h5 {
  font-size: 1rem;
  line-height: 1.625rem;
}

h6, .h6 {
@@ -794,7 +795,7 @@ form:not(.layout-builder-configure-block) .select-all.checkbox {
}

.vbo-table .views-table-row-vbo-select-all .form-submit {
  color: #4d4d4d;
  color: #343434;
  background-color: #fff;
  border-radius: 10px;
  fill: #4d4d4d;
@@ -902,7 +903,7 @@ form:not(.layout-builder-configure-block) .select-all.checkbox {
.card__block--table table tbody td,
.card__block--table table tbody td a {
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.625rem;
}

b,
@@ -1384,7 +1385,7 @@ svg[class^="icon-"] {
}

.icon-black {
  fill: #4d4d4d;
  fill: #343434;
}

.icon-gray {
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@

.breadcrumb a {
  display: inline-block;
  font-weight: 300;
  font-weight: 400;
}

.breadcrumb a:hover {
+324 −55
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@@ -37,6 +38,7 @@ pre code {
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@@ -66,6 +68,7 @@ body {

#skip-link a {
  background: #222222;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  color: #f3f3f3;
  padding: 3px 20px 8px;
@@ -79,6 +82,7 @@ h1, h2, h3, h4, h5, h6,
  font-weight: 500;
  line-height: 1.1;
  margin: 1rem 0 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@@ -269,6 +273,11 @@ iframe {
  max-width: 100%;
}

iframe[src*='youtube.com'], iframe[data-src*='youtube.com'] {
  height: 400px;
  width: 100%;
}

p > iframe {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
@@ -291,11 +300,6 @@ a:active, a:hover {
  outline: 0;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

a:active:not(.btn) {
  opacity: .8;
}
@@ -357,64 +361,153 @@ th {
  text-align: left;
}

[dir='rtl'] th {
  text-align: right;
}

.table,
.path-node .body-text table {
.path-node .body-text table,
.comment .comment__text table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  font-size: 0.875rem;
  border-color: #CCCCCC;
}

.table th,
.table td,
.path-node .body-text table th,
.path-node .body-text table td {
  padding: 0.75rem;
.path-node .body-text table td,
.comment .comment__text table th,
.comment .comment__text table td {
  padding: 0.75rem 1.25rem;
  vertical-align: top;
  word-wrap: break-word;
  border: 1px solid #CCCCCC;
}

.table th p:last-child,
.table td p:last-child,
.path-node .body-text table th p:last-child,
.path-node .body-text table td p:last-child,
.comment .comment__text table th p:last-child,
.comment .comment__text table td p:last-child {
  margin-bottom: 0;
}

.table thead th,
.path-node .body-text table thead th {
  font-weight: 500;
  font-size: 12px;
.path-node .body-text table thead th,
.comment .comment__text table thead th {
  font-weight: 700;
  font-size: 14px;
  vertical-align: bottom;
  border-bottom: 2px solid #e6e6e6;
}

.table thead th a,
.path-node .body-text table thead th a,
.comment .comment__text table thead th a {
  font-weight: bold;
}

.table tbody + tbody,
.path-node .body-text table tbody + tbody {
  border-top: 2px solid #e6e6e6;
.path-node .body-text table tbody + tbody,
.comment .comment__text table tbody + tbody {
  border-top: 1px solid #CCCCCC;
}

.table .views-align-left,
.path-node .body-text table .views-align-left {
.path-node .body-text table .views-align-left,
.comment .comment__text table .views-align-left {
  text-align: left;
}

.table .views-align-right,
.path-node .body-text table .views-align-right {
.path-node .body-text table .views-align-right,
.comment .comment__text table .views-align-right {
  text-align: right;
}

.table .views-align-center,
.path-node .body-text table .views-align-center {
.path-node .body-text table .views-align-center,
.comment .comment__text table .views-align-center {
  text-align: center;
}

.page-node-edit form .table td,
.page-node-edit form .table th,
.path-group form .table td,
.path-group form .table th,
.page-node form .table td,
.page-node form .table th {
  border: none;
}

.page-node-edit form .table thead th,
.path-group form .table thead th,
.page-node form .table thead th {
  padding: 0.5rem 0;
  font-weight: bold;
  border: none;
}

.page-node-edit form .table tbody td,
.path-group form .table tbody td,
.page-node form .table tbody td {
  vertical-align: middle;
}

.page-node-edit form .table tbody td.field-multiple-drag,
.path-group form .table tbody td.field-multiple-drag,
.page-node form .table tbody td.field-multiple-drag {
  width: 22px;
  max-width: 100%;
  padding-left: 1.75rem;
  padding-right: .25rem;
  text-align: center;
}

[dir='rtl'] .page-node-edit form .table tbody td.field-multiple-drag, [dir='rtl']
.path-group form .table tbody td.field-multiple-drag, [dir='rtl']
.page-node form .table tbody td.field-multiple-drag {
  padding-right: 1.75rem;
  padding-left: .25rem;
}

.page-node-edit form .table tbody td.field-multiple-drag .tabledrag-handle,
.path-group form .table tbody td.field-multiple-drag .tabledrag-handle,
.page-node form .table tbody td.field-multiple-drag .tabledrag-handle {
  position: static;
  width: 22px;
  padding: 0;
  margin: 0 auto;
}

.page-node-edit form .table tbody td.field-multiple-drag .tabledrag-handle span:before,
.path-group form .table tbody td.field-multiple-drag .tabledrag-handle span:before,
.page-node form .table tbody td.field-multiple-drag .tabledrag-handle span:before {
  top: auto;
}

.page-node-edit form .table tbody td.field-multiple-drag + td,
.path-group form .table tbody td.field-multiple-drag + td,
.page-node form .table tbody td.field-multiple-drag + td {
  padding-left: .25rem;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #e6e6e6;
  border: 1px solid #CCCCCC;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #e6e6e6;
  border: 1px solid #CCCCCC;
}

.table-bordered thead th,
@@ -457,7 +550,7 @@ form:not(.layout-builder-add-block) .tabledrag-handle {

form:not(.layout-builder-add-block) .tabledrag-handle ~ .form-managed-file {
  display: block;
  padding-left: 24px;
  margin-left: 24px;
}

.table-responsive {
@@ -465,6 +558,10 @@ form:not(.layout-builder-add-block) .tabledrag-handle ~ .form-managed-file {
  width: 100%;
}

.table-responsive.card__block--table {
  margin-bottom: .625rem;
}

.table-responsive .table-bordered {
  border: 0;
}
@@ -473,6 +570,15 @@ form:not(.layout-builder-add-block) .tabledrag-handle ~ .form-managed-file {
  margin-right: auto;
}

[dir='rtl'] .right-auto {
  margin-left: auto;
  margin-right: 0;
}

.view-group-manage-members {
  padding: 0 10px;
}

.select-all.checkbox,
form:not(.layout-builder-configure-block) .select-all.checkbox {
  display: table-cell;
@@ -487,23 +593,36 @@ form:not(.layout-builder-configure-block) .select-all.checkbox {
}

.vbo-table .btn-group--operations {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.vbo-table .btn-group--operations > .btn {
  white-space: nowrap;
}

.vbo-table .btn-group--operations .dropdown-menu {
  top: 100%;
  left: 0;
  right: auto;
}

.vbo-table .form-no-label.checkbox label {
  display: none;
}

.vbo-table .views-table-row-vbo-select-all .form-submit {
  color: #4d4d4d;
  color: #343434;
  background-color: #fff;
  border-radius: 10px;
  fill: #4d4d4d;
  fill: #343434;
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
@@ -516,6 +635,7 @@ form:not(.layout-builder-configure-block) .select-all.checkbox {
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
  outline: 0;
}
@@ -530,12 +650,23 @@ form:not(.layout-builder-configure-block) .select-all.checkbox {
  padding: 10px 0;
}

[dir='rtl'] #vbo-action-form-wrapper .btn-group.dropdown {
  right: auto;
  left: 1rem;
}

#vbo-action-form-wrapper .form-type-checkbox {
  left: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

#vbo-action-form-wrapper.card__block {
  padding: 0;
}

#vbo-action-form-wrapper.card__block .panel-heading {
  padding: 1.25rem 0 1.25rem 1.25rem;
  padding: 1.25rem;
}

#vbo-action-form-wrapper.card__block .vbo-multipage-selector ul {
@@ -558,6 +689,41 @@ form:not(.layout-builder-configure-block) .select-all.checkbox {
  padding-top: 0.5rem;
}

.card__block--table table {
  margin-bottom: 0;
}

.card__block--table table th,
.card__block--table table td {
  border-color: #e6e6e6;
}

.card__block--table table thead th {
  border: none;
}

.card__block--table table tbody tr:nth-of-type(odd), .card__block--table table tbody tr:hover {
  background-color: #f3f3f3;
}

.card__block--table table tbody td {
  border-width: 1px 0 0;
}

.card__block--table table tbody td.views-field-vote-source {
  word-break: break-all;
}

.card__block--table table tbody td a {
  font-weight: bold;
}

.card__block--table table tbody td,
.card__block--table table tbody td a {
  font-size: 1rem;
  line-height: 1.5rem;
}

b,
strong {
  font-weight: bold;
@@ -775,6 +941,11 @@ sub {
  margin-left: 10px;
}

[dir='rtl'] .margin-left-m {
  margin-left: 0;
  margin-right: 10px;
}

.margin-left-l {
  margin-left: 20px;
}
@@ -854,6 +1025,7 @@ sub {
}

.align-center {
  -ms-flex-item-align: center;
      align-self: center;
}

@@ -885,6 +1057,7 @@ sub {

.img-elevated {
  display: inline-block;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

@@ -925,7 +1098,10 @@ img.align-center {
}

.img-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 10px;
}
@@ -953,10 +1129,18 @@ img.align-center {
  float: right !important;
}

[dir='rtl'] .pull-right {
  float: left !important;
}

.pull-left {
  float: left !important;
}

[dir='rtl'] .pull-left {
  float: right !important;
}

.js .js-hide,
.js-show,
.hide {
@@ -1020,6 +1204,7 @@ img.align-center {
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
@@ -1031,7 +1216,12 @@ img.align-center {
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

.btn:not(.btn-link), .btn:not(.btn-link):focus, .btn:not(.btn-link):hover, .btn:not(.btn-link).focus {
  text-decoration: none;
  outline: 0;
}

@@ -1047,11 +1237,6 @@ img.align-center {
  margin-left: 3px;
}

.btn:hover, .btn:focus, .btn.focus {
  text-decoration: none;
  outline: 0;
}

.btn:active, .btn.active {
  background-image: none;
}
@@ -1060,6 +1245,7 @@ img.align-center {
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: .65;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@@ -1087,6 +1273,7 @@ a.btn {
fieldset[disabled] .btn-link {
  background-color: transparent;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@@ -1166,15 +1353,21 @@ input[type="button"].btn-block {
}

.btn-raised {
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
  -webkit-transition: .15s ease-out, -webkit-box-shadow;
  transition: .15s ease-out, -webkit-box-shadow;
  transition: box-shadow, .15s ease-out;
  transition: box-shadow, .15s ease-out, -webkit-box-shadow;
}

.btn-raised:active, .btn-raised.active, .btn-raised:hover {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
}

.btn-raised.disabled, .btn-raised[disabled] {
  -webkit-box-shadow: 0 -1px 0 #e0e0e0, 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
          box-shadow: 0 -1px 0 #e0e0e0, 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
}

@@ -1219,10 +1412,12 @@ input[type="button"].btn-block {
  padding: 7px;
  border-radius: 50%;
  border: 0;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

.btn-floating:active, .btn-floating.active, .btn-floating:hover {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
}

@@ -1232,6 +1427,7 @@ input[type="button"].btn-block {
}

.btn-floating.disabled, .btn-floating[disabled] {
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

@@ -1263,6 +1459,14 @@ input[type="button"].btn-block {
  margin-left: -1px;
}

[dir='rtl'] .btn-group .btn + .btn, [dir='rtl']
.btn-group .btn + .btn-group, [dir='rtl']
.btn-group .btn-group + .btn, [dir='rtl']
.btn-group .btn-group + .btn-group {
  margin-left: 0;
  margin-right: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}
@@ -1301,12 +1505,27 @@ input[type="button"].btn-block {
  border-top-right-radius: 0;
}

[dir='rtl'] .btn-group > .btn:first-child:not(:last-of-type):not(.dropdown-toggle) {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

[dir='rtl'] .btn-group > .btn:last-child:not(:first-child), [dir='rtl']
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}
@@ -1352,6 +1571,7 @@ input[type="button"].btn-block {
}

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@@ -1395,7 +1615,11 @@ input[type="button"].btn-block {

.btn-group--operations {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@@ -1411,6 +1635,15 @@ input[type="button"].btn-block {
  text-align: center;
}

.contextual .trigger {
  background-image: url("../../components/06-libraries/icons/source/icon-edit.svg");
}

.contextual .trigger:focus, .contextual .trigger:active, .contextual .trigger:hover {
  background-color: #e6e6e6;
  background-image: url("../../components/06-libraries/icons/source/icon-edit.svg");
}

.textarea--cke .cke {
  position: relative;
}
@@ -1467,6 +1700,28 @@ body {
  h4, .h4 {
    font-size: 1.25rem;
  }
  .card__block--table table tbody td {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .card__block--table table tr th:first-child,
  .card__block--table table tr td:first-child {
    padding-left: 2.5rem;
  }
  [dir='rtl'] .card__block--table table tr th:first-child, [dir='rtl']
  .card__block--table table tr td:first-child {
    padding-right: 2.5rem;
    padding-left: 1.875rem;
  }
  .card__block--table table tr th:last-child,
  .card__block--table table tr td:last-child {
    padding-right: 2.5rem;
  }
  [dir='rtl'] .card__block--table table tr th:last-child, [dir='rtl']
  .card__block--table table tr td:last-child {
    padding-right: 1.875rem;
    padding-left: 2.5rem;
  }
  .block-group-add-event-block,
  .block-group-add-topic-block,
  .block-event-add-block,
@@ -1484,6 +1739,12 @@ body {
  }
}

@media (min-width: 1200px) {
  .view-group-manage-members {
    padding: 0;
  }
}

@media (max-width: 599px) {
  figure.align-left, figure.align-right, figure.align-center {
    float: none;
@@ -1495,20 +1756,18 @@ body {
  figure.align-left figcaption, figure.align-right figcaption, figure.align-center figcaption {
    padding: 0;
  }
  .table-responsive {
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding-bottom: 100px;
    margin-bottom: -100px;
  iframe[src*='youtube.com'], iframe[data-src*='youtube.com'] {
    height: 300px;
  }
  .table-responsive.card__block--table {
    margin-bottom: 0;
  }
  .right-auto {
    margin-left: 0.5rem;
    margin-left: .5rem;
  }
  .view-group-manage-members {
    padding: 0 10px;
  [dir='rtl'] .right-auto {
    margin-left: 0;
    margin-right: .5rem;
  }
  .view-group-manage-members .form-group-inline--right {
    display: block;
@@ -1524,7 +1783,11 @@ body {
    width: 100%;
  }
  #vbo-action-form-wrapper .btn-group.dropdown button {
    margin-right: 0.5rem;
    margin-right: .5rem;
  }
  [dir='rtl'] #vbo-action-form-wrapper .btn-group.dropdown button {
    margin-right: 0;
    margin-left: .5rem;
  }
  #vbo-action-form-wrapper .btn-group.dropdown .dropdown-menu.dropdown-menu-right {
    width: 100%;
@@ -1535,6 +1798,12 @@ body {
}

@media (max-width: 899px) {
  .table-responsive {
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding-bottom: 100px;
    margin-bottom: -100px;
  }
  .block-group-add-event-block,
  .block-group-add-topic-block,
  .block-event-add-block,
+37 −14
Original line number Diff line number Diff line
.file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.75rem;
  margin: 10px 0;
@@ -30,6 +32,8 @@
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
}

@@ -38,6 +42,8 @@
}

.file-link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: normal;
  word-break: break-word;
@@ -46,7 +52,7 @@
.file-link a, .file-link a:hover, .file-link a:focus, .file-link a:active {
  text-decoration: none;
  color: inherit;
  font-weight: 300;
  font-weight: 400;
}

.file-size {
@@ -63,8 +69,13 @@
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@@ -73,7 +84,10 @@
}

.card-file {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.11), 0 1px 2px rgba(0, 0, 0, 0.22);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.11), 0 1px 2px rgba(0, 0, 0, 0.22);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47.5%;
          flex: 0 0 47.5%;
  margin-bottom: 13px;
  font-size: 0.75rem;
@@ -81,13 +95,14 @@
}

.card-file:hover {
  -webkit-box-shadow: 0 -1px 0 #e0e0e0, 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
          box-shadow: 0 -1px 0 #e0e0e0, 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
}

.card-file__link {
  display: block;
  position: relative;
  height: 145px;
  height: 100px;
  padding: 12px;
  color: inherit;
  text-decoration: none;
@@ -97,7 +112,7 @@
  overflow: hidden;
  position: relative;
  line-height: 1.35em;
  max-height: 8em;
  max-height: 2.7em;
  padding-right: 1em;
  display: block;
  word-break: break-word;
@@ -122,7 +137,10 @@
}

.card-file__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
@@ -151,6 +169,8 @@
}

.card-file__count {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  white-space: nowrap;
  margin: 5px 0 0 24px;
@@ -164,9 +184,12 @@

@media (min-width: 900px) {
  .card-files__grid {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .card-file {
    -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
    margin-right: 2%;
  }
+2 −2
Original line number Diff line number Diff line
@@ -198,7 +198,7 @@ form:not(.layout-builder-configure-block) .form-no-label.checkbox [type="radio"]

form:not(.layout-builder-configure-block) .checkbox label,
form:not(.layout-builder-configure-block) .radio label {
  font-weight: 300;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
@@ -479,7 +479,7 @@ form:not(.layout-builder-configure-block) .switch input[type=checkbox] {
}

form:not(.layout-builder-configure-block) .switch label {
  font-weight: 300;
  font-weight: 400;
}

form:not(.layout-builder-configure-block) .switch .lever {
Loading