Commit 1edf8e13 authored by serhii.myronets's avatar serhii.myronets
Browse files

Issue #3273919 by agami4: Change font-weight

parent ab20908f
Loading
Loading
Loading
Loading
+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 {
+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
@@ -194,7 +194,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;
@@ -475,7 +475,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 {
+1 −1
Original line number Diff line number Diff line
@@ -229,7 +229,7 @@ span.form-required {
}

.field--label-inline .field--label + .field--item a {
  font-weight: 300;
  font-weight: 400;
}

.node-event-form #edit-timezone-indication .btn,
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@

.list-item__text .list-item__text--small {
  color: #555;
  font-weight: 300;
  font-weight: 400;
  margin-top: 5px;
}

Loading