Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e7083b67 authored by Daniel J. Ramirez's avatar Daniel J. Ramirez
Browse files

Updates and fixes

parent 4fb0ae49
Loading
Loading
Loading
Loading
+15 −4
Original line number Diff line number Diff line
@@ -7,14 +7,17 @@ nav {
a {
  transition: color 0.2s ease-in-out;
}
.border-color-transition,
#search_form #search_input_container {
.border-color-transition {
  transition: border-color 0.2s ease-in-out;
}
.fill-transition,
.checkmark .icon {
  transition: fill 0.2s ease-in-out;
}
.box-shadow-transition,
#search_form #search_input_container {
  transition: box-shadow 0.2s ease-in-out;
}
.disabled,
[disabled],
#preferences #engines .engine input:checked ~ .data {
@@ -439,7 +442,7 @@ nav #eelo_links > * {
}
#search_form #search_input_container:hover,
#search_form #search_input_container:active {
  border-color: #5068dd;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.13);
}
#search_form #search_input_container #q {
  font-size: 16px;
@@ -550,6 +553,7 @@ nav #eelo_links > * {
  font-size: 14px;
  font-weight: normal;
  margin-right: 16px;
  cursor: pointer;
}
#search_form .search_categories input[type="radio"]:checked + label,
#search_form #categories input[type="radio"]:checked + label {
@@ -580,6 +584,9 @@ nav #eelo_links > * {
  align-items: center;
  position: relative;
}
#show_more_categories_ {
  cursor: default;
}
#more_categories_toggle:checked ~ #more_categories,
#more_categories_toggle_[checked] ~ #more_categories {
  display: flex;
@@ -632,7 +639,7 @@ nav #eelo_links > * {
  #search_form #more_categories > label {
    padding: 0;
  }
  #search_input_container {
  #search_form.inline-search > #search_input_container {
    margin-right: 40px;
  }
  .tt-dropdown-menu {
@@ -753,6 +760,7 @@ nav #eelo_links > * {
#default_images_container {
  column-count: 5;
  column-gap: 8px;
  margin-bottom: 32px;
}
#default_images_container .img-thumb-link {
  display: block;
@@ -811,6 +819,9 @@ nav #eelo_links > * {
  align-items: center;
  justify-content: space-between;
}
#image_result_mini_gallery_header .title {
  font-size: 18px;
}
@media screen and (max-width: 1100px) {
  #results.image-gallery {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+2 −0
Original line number Diff line number Diff line
@@ -58,10 +58,12 @@
@color-transition: color .2s ease-in-out;
@border-color-transition: border-color .2s ease-in-out;
@fill-transition: fill .2s ease-in-out;
@box-shadow-transition: box-shadow .2s ease-in-out;

.color-transition { transition: @color-transition; }
.border-color-transition { transition: @border-color-transition; }
.fill-transition { transition: @fill-transition; }
.box-shadow-transition { transition: @box-shadow-transition; }

.widget-border(@color: rgba(0, 0, 0, .2)) {
  border: 2px solid @color;
+3 −0
Original line number Diff line number Diff line
@@ -120,6 +120,7 @@
#default_images_container {
  column-count: 5;
  column-gap: @spacing_medium;
  margin-bottom: @spacing_xx-large;

  .img-thumb-link {
    display: block;
@@ -192,6 +193,8 @@
  display: flex;
  align-items: center;
  justify-content: space-between;

  .title { font-size: @fontsize_large; }
}


Loading