summaryrefslogtreecommitdiffstats
path: root/data/theme/gnome-shell-sass/widgets/_search-results.scss
blob: 644c53db58d3634879e8611a0deac0fa9c61fe45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* Search */

// search overview container
#searchResults {
  margin: 0 $base_margin;
}

#searchResultsContent {
  max-width: 1072px;
}

// search results sections "the boxes"
.search-section {
  // This should be equal to #searchResultsContent spacing
  spacing: $base_padding*3;

  // separator (unstyled)
  .search-section-separator { 
    height: $base_margin*2; // use it as a spacer
    background-color: transparent;
  }
}

// content
.search-section-content {
  background-color: lighten($system_bg_color, 5%);
  border-radius: $modal_radius*1.5;
  border: 1px solid $osd_outer_borders_color;
  color: $osd_fg_color;
  padding: $base_padding*2;
  margin:0 $base_margin*3;
}

%search_section_content_item {
  @include tile_button($osd_fg_color);
  border-radius: $base_border_radius+3px;
}

// "no results" text
.search-statustext {
  @extend %title_1;
}

.grid-search-results {
  spacing: $base_padding*5;
  margin:0 $base_margin*3;
}

// Search results with icons
.grid-search-result {
  @extend .app-well-app;
}

// search result provider
.search-provider-icon {
  @extend %search_section_content_item;
  &:ltr {margin-right: $base_margin;}
  &:rtl {margin-left: $base_margin;}

  // content
  .list-search-provider-content {
    spacing: $base_padding * 2;

    // provider labels
    .list-search-provider-details {
      width: 120px;
      color: $osd_fg_color;
    }
  }
}

// search results list
.list-search-results {
  spacing: $base_padding;
}

// search result listitem
.list-search-result {
  @extend %search_section_content_item;

  // content
  .list-search-result-content {
    spacing: $base_padding;
  }

  // list item title (with leading icon)
  .list-search-result-title {
    spacing: $base_padding * 2;
    // font-weight: bold;
  }

  // list item description
  .list-search-result-description {
    color: $osd_insensitive_fg_color;
  }
}