Project

General

Profile

« Previous | Next » 

Revision 2ed89b85

Added by Andreas Kohlbecker almost 3 years ago

ref #7599 derivate tree with collapsible items

View differences:

modules/cdm_dataportal/classes/DerivationTreeComposer.php
6 6
  private $root_unit_dtos;
7 7
  private $focused_unit_uuid = null;
8 8
  private $with_details = false;
9
  private $collapsible = false;
10

  
11
  /**
12
   * @return bool
13
   */
14
  public function isCollapsible() {
15
    return $this->collapsible;
16
  }
17

  
18
  /**
19
   * @param bool $collapsible
20
   */
21
  public function setCollapsible($collapsible) {
22
    $this->collapsible = $collapsible;
23
  }
9 24

  
10 25
  /**
11 26
   * @return bool
......
14 29
    return $this->with_details;
15 30
  }
16 31

  
32
  public function collapsibleItemClassAttribute($has_sub_derivatives) {
33
    return $this->isCollapsible() & $has_sub_derivatives === TRUE ? ' tree-item-collapsible' : '';
34

  
35
  }
36

  
37
  public function subItemsClassAttribute($has_sub_derivatives) {
38
    return $has_sub_derivatives === true ? ' with-sub-items' : '';
39
  }
40

  
41
  public function itemCollapsedStateClassAttribute() {
42
    return $this->isCollapsible() ? ' collapsed' : '';
43
  }
44

  
17 45
  /**
18 46
   * @param bool $with_details
19 47
   */
......
64 92
    $render_array = [];
65 93
    $render_array['derived-unit-tree'] = $derivation_tree;
66 94

  
67
    _add_js_derivation_tree('.derived-unit-tree');
95
    _add_js_derivation_tree('.item-tree');
68 96

  
69 97
    return $render_array;
70 98
  }
......
81 109
   *    An array which can be used in render arrays to be passed to the
82 110
   * theme_table() and theme_list().
83 111
   */
84
  private function derived_units_tree() {
85 112

  
113
  private function derived_units_tree() {
86 114
    RenderHints::pushToRenderStack('derived-unit-tree');
87 115
    RenderHints::setFootnoteListKey('derived-unit-tree');
88 116

  
89
    $root_items = [];
90
    //we need one more item to contain the items of one level (fieldunit, derivate data etc.)
91
    foreach ($this->root_unit_dtos as &$sob_dto) {
92

  
93
      $content_wrapper_markup = '';
94
      if($this->with_details){
95
        $field_unit_dto_render_array = compose_cdm_specimen_or_observation_dto_details_grid($sob_dto);
96
        $content_wrapper_markup = '<div class="unit-content-wrapper">' // allows to apply the borders between .derived-unit-tree-root and .unit-content
97
          . '<div class="unit-content derived-unit-details-grid">' . drupal_render($field_unit_dto_render_array) . '</div>'
98
          . '</div>';
99
      }
100
      $root_item = [
101
        '#prefix' => '<div class="derived-unit-tree">',
102
        '#suffix' => '</div>',
103
        '#type' => 'container',
104
        '#attributes' => [
105
          'class' => [
106
            'derived-unit-item derived-unit-tree-root',
107
            html_class_attribute_ref($sob_dto),
108
          ],
109
        ],
110
        'div-container' => [
111
          'root-item-and-sub-tree' => [
112
            markup_to_render_array($this->derived_units_tree_node_header($sob_dto)
113
              . $content_wrapper_markup),
114
          ],
115
        ],
117
    $list_items = $this->derived_units_as_list_items($this->root_unit_dtos);
116 118

  
117
      ];
118
      if (isset($sob_dto->derivatives) && sizeof($sob_dto->derivatives) > 0) {
119
        usort($sob_dto->derivatives, 'compare_specimen_or_observation_dtos');
120
        // children are displayed in a nested list.
121
        $root_item['div-container']['root-item-and-sub-tree'][] = $this->derived_units_sub_tree($sob_dto->derivatives);
122
      }
123
      $root_items[] = $root_item;
124
    }
125

  
126
    $root_items['footnotes'] = markup_to_render_array(render_footnotes());
127
    RenderHints::popFromRenderStack();
128

  
129
    return $root_items;
130
  }
131

  
132
  /**
133
   * @param array $unit_dtos
134
   *
135
   * @return array
136
   */
137
   private function derived_units_sub_tree(array $unit_dtos) {
138

  
139
    $list_items = $this->derived_units_as_list_items($unit_dtos);
140

  
141
    $derivation_tree = [
119
    $root_items = [
142 120
      '#theme' => 'item_list',
143 121
      '#type' => 'ul',
122
      '#prefix' => '<div class="item-tree">',
123
      '#suffix' => '</div>',
144 124
      '#attributes' => [
145
        // NOTE: class attribute "derived-unit-item" is important for consistency with subordinate <ul> elements produced by the drupal theme function
146
        'class' => CDM_SPECIMEN_LIST_VIEW_MODE_OPTION_DERIVATE_TREE . ' derived-unit-item derived-unit-sub-tree',
147 125
      ],
148 126
      '#items' => $list_items,
149 127
    ];
150
    return $derivation_tree;
128

  
129
    $root_items['footnotes'] = markup_to_render_array(render_footnotes());
130
    RenderHints::popFromRenderStack();
131

  
132
    return $root_items;
133

  
151 134
  }
152 135

  
153 136
  /**
......
165 148
    $list_items = [];
166 149
    //we need one more item to contain the items of one level (fieldunit, derivate data etc.)
167 150
    foreach ($root_unit_dtos as &$sob_dto) {
151
      $has_sub_derivatives = isset($sob_dto->derivatives) && sizeof($sob_dto->derivatives) > 0;
168 152
      $item = [];
169
      $item['class'] = ['derived-unit-item ', html_class_attribute_ref($sob_dto)];
153
      $item['class'] = [
154
        'derived-unit-item ',
155
        html_class_attribute_ref($sob_dto),
156
        $this->itemCollapsedStateClassAttribute(),
157
        $this->collapsibleItemClassAttribute($has_sub_derivatives),
158
        $this->subItemsClassAttribute($has_sub_derivatives)
159
      ];
170 160
      // data" element of the array is used as the contents of the list item
171 161
      $item['data'] = [];
172 162
      $unit_content_markup = '';
173 163
      if($this->with_details){
174
        $units_render_array = compose_cdm_specimen_or_observation_dto_details_grid($sob_dto);
175
        $unit_content_markup = '<div class="unit-content derived-unit-details-grid">' . drupal_render($units_render_array) . '</div>';
164
        $unit_dto_render_array = compose_cdm_specimen_or_observation_dto_details_grid($sob_dto);
165
        $this->applyUnitContentGrid($unit_dto_render_array);
166
        $unit_content_markup = drupal_render($unit_dto_render_array);
176 167
      }
177
      $item['data'] = $this->derived_units_tree_node_header($sob_dto)
178
        . $unit_content_markup;
179
      if (isset($sob_dto->derivatives) && sizeof($sob_dto->derivatives) > 0) {
168
      $item['data'] = $this->applyItemWrapper(
169
        $this->derived_units_tree_node_header($sob_dto)
170
        . $unit_content_markup
171
        , $has_sub_derivatives);
172
      if ($has_sub_derivatives) {
180 173
        usort($sob_dto->derivatives, 'compare_specimen_or_observation_dtos');
181 174
        // children are displayed in a nested list.
182 175
        $item['children'] = $this->derived_units_as_list_items($sob_dto->derivatives);
......
187 180
    return $list_items;
188 181
  }
189 182

  
183

  
184
  /**
185
   * @param $unit_dto_render_array
186
   *
187
   * @return mixed
188
   *
189
   * FIXME: merge into compose_cdm_specimen_or_observation_dto_details_grid() again
190
   */
191
  function applyUnitContentGrid(&$unit_dto_render_array){
192
    $unit_dto_render_array['#prefix'] = '<div class="unit-content derived-unit-details-grid">';
193
    $unit_dto_render_array['#suffix'] = '</div>';
194
    return $unit_dto_render_array;
195
  }
196

  
197
  function applyItemWrapper($item_markup, $has_children){
198
    $sub_item_line_class_attribute = $has_children ? ' item-wrapper-with-sub-items' : '';
199
    return '<div class="item-wrapper' . $sub_item_line_class_attribute . '">' // allows to apply the borders between .derived-unit-tree-root and .unit-content
200
      . $item_markup
201
    . '</div>';
202
  }
203

  
190 204
  /**
191 205
   * @param $sob_dto
192 206
   *
......
196 210
    $link = '';
197 211
    $focused_attribute = '';
198 212
    $hover_effect_attribute = '';
213
    $collapse_open_icons = '';
214
    $unit_header_wrapper_sub_items_class_attr = '';
199 215
    if(is_uuid($this->getFocusedUnitUuid()) & $sob_dto->uuid == $this->getFocusedUnitUuid()) {
200 216
      $focused_attribute = " focused_item";
201 217
    } else {
......
208 224
    if($link) {
209 225
      $icon_link_markup = '<span class="page-link">' . $link . '</span>';
210 226
    }
211
    return '<div class="unit-header ' . $focused_attribute .'"><div class="unit-label' . $hover_effect_attribute .' "><span class="">' . symbol_for_base_of_record($sob_dto->recordBase->uuid). '</span> ' . $sob_dto->label . $icon_link_markup . '</div></div>';
227
    $has_sub_derivatives = isset($sob_dto->derivatives) && sizeof($sob_dto->derivatives) > 0;
228
    if($has_sub_derivatives){
229
      if($this->isCollapsible()){
230
        $collapse_open_icons = '<span class="tree-node-symbol tree-node-symbol-collapsible">'
231
          . font_awesome_icon_markup('fa-' . SYMBOL_COLLAPSIBLE_CLOSED)
232
          . '</span>';
233
      } else {
234
        $collapse_open_icons = '<span class="tree-node-symbol">'
235
          . font_awesome_icon_markup('fa-' . SYMBOL_COLLAPSIBLE_OPEN)
236
          . '</span>';
237
      }
238
    }
239
    if($has_sub_derivatives){
240
      $unit_header_wrapper_sub_items_class_attr = ' unit-header-wrapper-with-sub-items';
241
    }
242
    return '<div class="unit-header-wrapper' . $unit_header_wrapper_sub_items_class_attr . $focused_attribute . '"><div class="unit-header"><div class="unit-label' . $hover_effect_attribute .' ">' . $collapse_open_icons . '<span class="symbol">' . symbol_for_base_of_record($sob_dto->recordBase->uuid). '</span>' . $sob_dto->label . $icon_link_markup . '</div></div></div>';
212 243
  }
213 244

  
214 245
}
modules/cdm_dataportal/includes/pages.inc
85 85

  
86 86
    // --- get map service HTTP query parameters
87 87
    if (count($specimensOrObservations) > 0 || $root_unit_dtos > 0) {
88
        $render_array['map'] = occurrence_map_query_parameters($taxon);
88
       //######## RE-ENABLE !!!!! $render_array['map'] = occurrence_map_query_parameters($taxon);
89 89
    }
90 90

  
91 91
    // -------------------------------------------------------
......
120 120
    else if(($current_view_mode == CDM_SPECIMEN_LIST_VIEW_MODE_OPTION_DERIVATE_TREE)){ // FIXME this seems to be wrong
121 121
      $derivationTreeComposer = new DerivationTreeComposer($root_unit_dtos);
122 122
      $derivationTreeComposer->setWithDetails(true);
123
      $derivationTreeComposer->setCollapsible(true);
123 124
      $render_array['specimen_list'] = $derivationTreeComposer->compose();
124 125
      $render_array['specimen_list']['#weight'] = 2;
125 126
    } else {
......
1033 1034
  $rank_limit_uuid = variable_get(TAXONTREE_RANKLIMIT, TAXONTREE_RANKLIMIT_DEFAULT);
1034 1035

  
1035 1036
  $rank_separator = '<span> '
1036
    . font_awesome_icon_markup('fa-chevron-right')
1037
    . font_awesome_icon_markup('fa-' . SYMBOL_COLLAPSIBLE_CLOSED)
1037 1038
    . ' </span>';
1038 1039
  $more_children_icon = font_awesome_icon_markup('fa-sitemap fa-rotate-270');
1039 1040
  $more_children_label = '...';
modules/cdm_dataportal/includes/symbols.inc
16 16
 *   - Andreas Kohlbecker <a.kohlbecker@BGBM.org>
17 17
 */
18 18

  
19
const SYMBOL_COLLAPSIBLE_CLOSED = 'chevron-right';
20
const SYMBOL_COLLAPSIBLE_OPEN = 'chevron-down';
21

  
19 22
/**
20 23
 * @param $base_of_record_uuid
21 24
 *  The UUID of the SpecimenOrObservationType
modules/cdm_dataportal/js/derivation-tree.js
1 1
/**
2 2
 * Expected dom structure like:
3
 *   <div class="derived-unit-tree">
4
 *      <div class="derived-unit-item derived-unit-tree-root ">
5
 *          <div class="unit-label">(B SP-99999).</div>
6
 *          <div class="unit-content">
7
 *          <ul class="specimens derivate_tree">
8
 *                  <li class="derived-unit-item">
9
 *                      <div class="unit-label">(B B-923845).</div>
10
 *                      <div class="unit-content">
11
 *                  </li>
12
                    <li class="derived-unit-item">
13
                        <div class="unit-label">(B DNA-9098080).</div>
14
                        <div class="unit-content"></div>
15
                    </li>
16
             </ul>
3
 *   <div class="item-tree">
4
 *      <div class="item-list">
5
 *          <ul>
6
 *              <li class="derived-unit-item derived-unit-tree-root ">
7
 *                  <div class="unit-label">(B SP-99999).</div>
8
 *                  <div class="unit-content">
9
 *                  <ul class="specimens derivate_tree">
10
 *                      <li class="derived-unit-item">
11
 *                          <div class="unit-label">(B B-923845).</div>
12
 *                          <div class="unit-content">
13
 *                      </li>
14
                        <li class="derived-unit-item">
15
                            <div class="unit-label">(B DNA-9098080).</div>
16
                            <div class="unit-content"></div>
17
                        </li>
18
                    </ul>
19
                </li>
20
            </ul>
17 21
        </div>
18 22
 *   </div>
19 23
 * The plugin function should be bound to outer div with '.derived-unit-tree'
......
29 33
            };
30 34
        }
31 35

  
32
        var $element = $(this);
36
        let $element = $(this);
33 37
        $element.find(".derived-unit-item").each(function () {
34
            var $listItem = $(this);
35
            var unitLabel = $listItem.children('.unit-header');
36
            unitLabel.find('.page-link').click(function(event){
38
            let $listItem = $(this);
39
            let $itemWrapper = $listItem.children('.item-wrapper');
40
            let $unitHeader = $itemWrapper.children('.unit-header-wrapper').children('.unit-header');
41
            let $collapsibleSymbol = $unitHeader.find('.unit-label > .tree-node-symbol-collapsible');
42

  
43
            $unitHeader.find('.page-link').click(function(event){
37 44
                event.stopPropagation();
38 45
            });
39
            var unitContent = $listItem.children('.unit-content')
40
            if(unitContent.length == 0){
41
                // must be the root unit, we gonna dig one level deeper
42
                unitContent = $listItem.children('.unit-content-wrapper').children('.unit-content')
43
            }
44
            unitContent.hide();
45
            unitLabel.click(function(){
46
                unitContent.toggle();
46
            let $unitContent = $itemWrapper.children('.unit-content');
47
            $unitContent.hide();
48
            $unitHeader.click(function(){
49
                $unitContent.toggle();
50
            });
51
            $collapsibleSymbol.click(function(event){
52
                $listItem.toggleClass('collapsed').children('.item-list').children('ul.derived-unit-item').toggleClass('collapsed');
53
                    $(this).find('.fa').toggleClass('fa-rotate-90');
54
                    event.stopPropagation();
55
                }
56
            ).hover(function(event){
57
                event.stopsPropagation(); // allows the css hover effect to be handled but stops from bubbling up to the label
47 58
            });
59

  
48 60
        });
49 61

  
50 62
    };
themes/zen_dataportal/css/cdm.css
6 6
 */
7 7
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
8 8
@import url("../fonts/notomono-webfont-2020/stylesheet.css");
9
/* line 30, ../sass/ie-legacy.scss */
10
.pie-element, .lt-ie9 #page {
11
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
12
  position: relative;
13
}
14

  
15
/* line 43, ../sass/ie-legacy.scss */
16
.pie-container {
17
  z-index: 0;
18
  position: relative;
19
}
20

  
21
/* line 47, ../sass/ie-legacy.scss */
22
.z-pie-element, .lt-ie9 #page {
23
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
24
  z-index: 0;
25
}
26

  
27
/* line 63, ../sass/ie-legacy.scss */
28
.lt-ie9 #header {
29
  /* 
30
   * reset right padding to zero and use margin-right instead,
31
   * this avoids the need for background-clip: content-box
32
   * which is not suppoorted in IE < 9
33
   */
34
  padding-right: 0;
35
  margin-right: 20px;
36
}
37

  
38
/* line 43, ../sass/_mixins.scss */
9
/* line 42, ../sass/_mixins.scss */
39 10
.block a:link,
40 11
.block a:visited, .node a:link,
41 12
.node a:visited, #identificationKey a:link,
42 13
#identificationKey a:visited, #content a:link,
43 14
#content a:visited {
44
  color: #115e92;
15
  color: #115E92;
45 16
  text-decoration: none;
46 17
}
47
/* line 49, ../sass/_mixins.scss */
18
/* line 48, ../sass/_mixins.scss */
48 19
.block a:hover,
49 20
.block a:focus, .node a:hover,
50 21
.node a:focus, #identificationKey a:hover,
......
52 23
#content a:focus {
53 24
  text-decoration: underline;
54 25
}
55
/* line 58, ../sass/_mixins.scss */
26
/* line 57, ../sass/_mixins.scss */
56 27
.block .Synonym a:link,
57 28
.block .Synonym a:visited, .block .misapplied-name a:link,
58 29
.block .misapplied-name a:visited, .node .Synonym a:link,
......
62 33
#identificationKey .misapplied-name a:visited, #content .Synonym a:link,
63 34
#content .Synonym a:visited, #content .misapplied-name a:link,
64 35
#content .misapplied-name a:visited {
65
  color: #7c7c7c;
36
  color: #7C7C7C;
66 37
}
67
/* line 64, ../sass/_mixins.scss */
38
/* line 63, ../sass/_mixins.scss */
68 39
.block .Taxon a:link,
69 40
.block .Taxon a:visited, .node .Taxon a:link,
70 41
.node .Taxon a:visited, #identificationKey .Taxon a:link,
71 42
#identificationKey .Taxon a:visited, #content .Taxon a:link,
72 43
#content .Taxon a:visited {
73
  color: #115e92;
44
  color: #115E92;
74 45
}
75 46

  
76 47
/* line 20, ../sass/cdm.scss */
......
113 84
/* line 54, ../sass/cdm.scss */
114 85
#page-toc {
115 86
  float: right;
116
  background-color: white;
87
  background-color: #fff;
117 88
}
118 89
/* line 57, ../sass/cdm.scss */
119 90
#page-toc h3 {
......
170 141
/*
171 142
 * Search results
172 143
 */
173
/* line 43, ../sass/_mixins.scss */
144
/* line 42, ../sass/_mixins.scss */
174 145
#search_results a:link,
175 146
#search_results a:visited {
176
  color: #115e92;
147
  color: #115E92;
177 148
  text-decoration: none;
178 149
}
179
/* line 49, ../sass/_mixins.scss */
150
/* line 48, ../sass/_mixins.scss */
180 151
#search_results a:hover,
181 152
#search_results a:focus {
182 153
  text-decoration: underline;
183 154
}
184
/* line 58, ../sass/_mixins.scss */
155
/* line 57, ../sass/_mixins.scss */
185 156
#search_results .Synonym a:link,
186 157
#search_results .Synonym a:visited, #search_results .misapplied-name a:link,
187 158
#search_results .misapplied-name a:visited {
188
  color: #7c7c7c;
159
  color: #7C7C7C;
189 160
}
190
/* line 64, ../sass/_mixins.scss */
161
/* line 63, ../sass/_mixins.scss */
191 162
#search_results .Taxon a:link,
192 163
#search_results .Taxon a:visited {
193
  color: #115e92;
164
  color: #115E92;
194 165
}
195 166
/* line 112, ../sass/cdm.scss */
196 167
#search_results table {
......
316 287

  
317 288
/*
318 289
 * derivatives tree view (see also derivation-tree.js)
319
 * partially based on ideas found in https://jsfiddle.net/xuonpjmh/21/
320 290
 */
321
/* line 245, ../sass/cdm.scss */
322
div.derived-unit-tree,
323
ul.derived-unit-sub-tree,
324
ul.derived-unit-sub-tree ul {
291
/* line 246, ../sass/cdm.scss */
292
.item-tree ul {
325 293
  list-style: none;
326
  margin: 0 0 0 3.2px;
327
  padding: 0;
294
  margin: 0;
295
  padding-left: 0;
328 296
}
329
/* line 250, ../sass/cdm.scss */
330
div.derived-unit-tree .unit-header,
331
ul.derived-unit-sub-tree .unit-header,
332
ul.derived-unit-sub-tree ul .unit-header {
333
  padding-top: 7px;
334
}
335
/* line 252, ../sass/cdm.scss */
336
div.derived-unit-tree .unit-header .unit-label,
337
ul.derived-unit-sub-tree .unit-header .unit-label,
338
ul.derived-unit-sub-tree ul .unit-header .unit-label {
339
  background-color: #dedede;
340
  padding-left: 5px;
297
/* line 251, ../sass/cdm.scss */
298
.item-tree ul.collapsed {
299
  display: none;
341 300
}
342
/* line 255, ../sass/cdm.scss */
343
div.derived-unit-tree .unit-header .unit-label .page-link,
344
ul.derived-unit-sub-tree .unit-header .unit-label .page-link,
345
ul.derived-unit-sub-tree ul .unit-header .unit-label .page-link {
346
  float: right;
301
/* line 254, ../sass/cdm.scss */
302
.item-tree ul li {
303
  padding: 7px 0px 0px 28px;
304
  margin-top: 3.5px;
305
  position: relative;
347 306
}
348 307
/* line 259, ../sass/cdm.scss */
349
div.derived-unit-tree .unit-header .unit-label-hover-effect:hover,
350
ul.derived-unit-sub-tree .unit-header .unit-label-hover-effect:hover,
351
ul.derived-unit-sub-tree ul .unit-header .unit-label-hover-effect:hover {
352
  cursor: pointer;
353
  background-color: #f8f8f8;
354
}
355
/* line 264, ../sass/cdm.scss */
356
div.derived-unit-tree .unit-content,
357
ul.derived-unit-sub-tree .unit-content,
358
ul.derived-unit-sub-tree ul .unit-content {
359
  padding: 11.2px;
360
  background-color: #ebebeb;
361
}
362
/* line 268, ../sass/cdm.scss */
363
div.derived-unit-tree .derivation-event,
364
ul.derived-unit-sub-tree .derivation-event,
365
ul.derived-unit-sub-tree ul .derivation-event {
366
  font-size: smaller;
367
  margin-top: -11.2px;
368
  color: #7c7c7c;
308
.item-tree ul li::before {
309
  content: "";
310
  position: absolute;
311
  top: 18.2px;
312
  left: -14px;
313
  border-left: 3.5px dotted #DEDEDE;
314
  border-bottom: 3.5px dotted #DEDEDE;
315
  width: 28px;
316
  height: 100%;
317
}
318
/* line 270, ../sass/cdm.scss */
319
.item-tree ul li:last-child:before {
320
  content: none;
321
}
322
/* line 274, ../sass/cdm.scss */
323
.item-tree ul li .item-wrapper-with-sub-items {
324
  position: relative;
369 325
}
370
/* line 273, ../sass/cdm.scss */
371
div.derived-unit-tree .focused_item,
372
ul.derived-unit-sub-tree .focused_item,
373
ul.derived-unit-sub-tree ul .focused_item {
374
  font-weight: bold;
326
/* line 276, ../sass/cdm.scss */
327
.item-tree ul li .item-wrapper-with-sub-items::after {
328
  content: "";
329
  position: absolute;
330
  top: 18.2px;
331
  left: -14px;
332
  border-left: 3.5px dotted #DEDEDE;
333
  border-bottom: 3.5px dotted #DEDEDE;
334
  width: 28px;
335
  height: 100%;
375 336
}
376

  
377
/* line 278, ../sass/cdm.scss */
378
div.derived-unit-tree-root .unit-content-wrapper {
379
  border-left: 3px dotted #dedede;
380
  margin-left: 3.2px;
337
/* line 290, ../sass/cdm.scss */
338
.item-tree ul li.collapsed .item-wrapper-with-sub-items::after {
339
  content: none;
381 340
}
382

  
383
/* line 284, ../sass/cdm.scss */
384
ul.derived-unit-sub-tree ul {
385
  margin-left: 1.0em;
341
/* line 296, ../sass/cdm.scss */
342
.item-tree > .item-list > ul {
343
  margin-left: -14px;
386 344
}
387
/* line 287, ../sass/cdm.scss */
388
ul.derived-unit-sub-tree li {
389
  position: relative;
390
  margin-left: 0;
391
  padding-left: 1em;
392
  margin-top: -3.2px;
393
  line-height: 22.4px;
394
  border-left: 3px dotted #dedede;
345
/* line 299, ../sass/cdm.scss */
346
.item-tree > .item-list > ul > li:last-child:before {
347
  content: unset;
395 348
}
396
/* line 297, ../sass/cdm.scss */
397
ul.derived-unit-sub-tree li:last-child {
398
  border-left: none;
349
/* line 302, ../sass/cdm.scss */
350
.item-tree > .item-list > ul > li::before {
351
  content: unset;
399 352
}
400
/* line 299, ../sass/cdm.scss */
401
ul.derived-unit-sub-tree li:last-child .unit-header, ul.derived-unit-sub-tree li:last-child .unit-content {
402
  margin-left: 3px;
353
/* line 306, ../sass/cdm.scss */
354
.item-tree > .item-list > ul > li:not(:last-child) > ul > li:before {
355
  content: unset;
403 356
}
404
/* line 303, ../sass/cdm.scss */
405
ul.derived-unit-sub-tree li:before {
406
  position: absolute;
407
  top: 3.2px;
408
  left: 0;
409
  width: 1em;
410
  /* width of horizontal line */
411
  height: 12.7px;
412
  /* vertical position of line */
413
  vertical-align: top;
414
  border-bottom: 3px dotted #dedede;
415
  content: "";
357
/* line 316, ../sass/cdm.scss */
358
.item-tree .tree-node-symbol {
416 359
  display: inline-block;
360
  width: 22.4px;
361
  height: 22.4px;
362
  color: #DEDEDE;
363
  background-color: #fff;
364
  margin-left: -23.45px;
365
  text-align: center;
366
  font-size: larger;
417 367
}
418
/* line 315, ../sass/cdm.scss */
419
ul.derived-unit-sub-tree li:last-child:before {
420
  border-left: 3px dotted #dedede;
368
/* line 329, ../sass/cdm.scss */
369
.item-tree .tree-node-symbol-collapsible:hover {
370
  color: #000;
421 371
}
422 372

  
423
/* line 320, ../sass/cdm.scss */
424
div.derived-unit-tree table.details-table {
373
/* line 339, ../sass/cdm.scss */
374
.item-tree .unit-header-wrapper .unit-label {
375
  background-color: #DEDEDE;
376
}
377
/* line 341, ../sass/cdm.scss */
378
.item-tree .unit-header-wrapper .unit-label .symbol {
379
  padding-left: 5px;
380
}
381
/* line 344, ../sass/cdm.scss */
382
.item-tree .unit-header-wrapper .unit-label .page-link {
383
  float: right;
384
  padding-right: 5.6px;
385
}
386
/* line 349, ../sass/cdm.scss */
387
.item-tree .unit-header-wrapper .unit-label-hover-effect:hover {
388
  cursor: pointer;
389
  background-color: #f8f8f8;
390
}
391
/* line 354, ../sass/cdm.scss */
392
.item-tree .unit-content {
393
  padding: 11.2px;
394
  background-color: #ebebeb;
395
}
396
/* line 358, ../sass/cdm.scss */
397
.item-tree .derivation-event {
425 398
  font-size: smaller;
399
  margin-top: -11.2px;
400
  color: #7C7C7C;
401
}
402
/* line 363, ../sass/cdm.scss */
403
.item-tree .focused_item {
404
  font-weight: bold;
426 405
}
427 406

  
428
/* line 325, ../sass/cdm.scss */
407
/* line 370, ../sass/cdm.scss */
429 408
.derived-unit-details-grid table.details-table {
430 409
  margin: 0;
431 410
  width: 100%;
432 411
  vertical-align: top;
433
  background-color: white;
412
  background-color: #fff;
434 413
}
435
/* line 330, ../sass/cdm.scss */
414
/* line 375, ../sass/cdm.scss */
436 415
.derived-unit-details-grid table.details-table thead {
437
  border-bottom: thin solid #dedede;
416
  border-bottom: thin solid #DEDEDE;
438 417
}
439
/* line 333, ../sass/cdm.scss */
418
/* line 378, ../sass/cdm.scss */
440 419
.derived-unit-details-grid table.details-table tbody {
441
  background-color: white;
420
  background-color: #fff;
442 421
}
443
/* line 335, ../sass/cdm.scss */
422
/* line 380, ../sass/cdm.scss */
444 423
.derived-unit-details-grid table.details-table tbody .label {
445 424
  text-align: right;
446 425
  white-space: nowrap;
447
  border-right: thin solid #dedede;
426
  border-right: thin solid #DEDEDE;
448 427
  width: 50%;
449 428
}
450
/* line 342, ../sass/cdm.scss */
429
/* line 387, ../sass/cdm.scss */
451 430
.derived-unit-details-grid table.details-table td, .derived-unit-details-grid table.details-table th {
452 431
  padding-right: 11.2px;
453 432
  padding-left: 11.2px;
454 433
}
455 434

  
456
/* line 348, ../sass/cdm.scss */
435
/* line 393, ../sass/cdm.scss */
457 436
.derived-unit-details-grid {
458 437
  display: grid;
459 438
  grid-column-gap: 11.2px;
460 439
  grid-row-gap: 11.2px;
461 440
}
462 441
@media all and (max-width: 659px) {
463
  /* line 348, ../sass/cdm.scss */
442
  /* line 393, ../sass/cdm.scss */
464 443
  .derived-unit-details-grid {
465 444
    grid-template-columns: repeat(1, 1fr);
466 445
  }
467 446
}
468 447
@media all and (min-width: 660px) {
469
  /* line 348, ../sass/cdm.scss */
448
  /* line 393, ../sass/cdm.scss */
470 449
  .derived-unit-details-grid {
471 450
    grid-template-columns: repeat(2, 1fr);
472 451
  }
473 452
}
474
/* line 358, ../sass/cdm.scss */
453
/* line 403, ../sass/cdm.scss */
475 454
.derived-unit-details-grid dl {
476 455
  margin: 0;
477 456
}
......
479 458
/*
480 459
 * Map
481 460
 */
482
/* line 367, ../sass/cdm.scss */
461
/* line 412, ../sass/cdm.scss */
483 462
.openlayers-container {
484 463
  margin-top: 5px;
485 464
  margin-bottom: 5px;
......
488 467
/*
489 468
 * Registration page & items
490 469
 */
491
/* line 377, ../sass/cdm.scss */
470
/* line 422, ../sass/cdm.scss */
492 471
.registration .type-status {
493 472
  font-weight: bold;
494 473
}
495
/* line 381, ../sass/cdm.scss */
474
/* line 426, ../sass/cdm.scss */
496 475
.registration .registration-date-and-institute {
497 476
  color: #999;
498 477
}
499
/* line 387, ../sass/cdm.scss */
478
/* line 432, ../sass/cdm.scss */
500 479
.registration .published-name .TaxonName .name {
501 480
  font-weight: bold;
502 481
}
503
/* line 391, ../sass/cdm.scss */
482
/* line 436, ../sass/cdm.scss */
504 483
.registration .typified-name .cdm\:TaxonName {
505 484
  color: #999;
506 485
}
507
/* line 393, ../sass/cdm.scss */
486
/* line 438, ../sass/cdm.scss */
508 487
.registration .typified-name .cdm\:TaxonName a {
509 488
  color: #999;
510 489
}
511
/* line 396, ../sass/cdm.scss */
490
/* line 441, ../sass/cdm.scss */
512 491
.registration .typified-name .cdm\:TaxonName .TaxonName .name {
513 492
  font-weight: bold;
514 493
}
515
/* line 402, ../sass/cdm.scss */
494
/* line 447, ../sass/cdm.scss */
516 495
.registration .registration-summary .registered_name .name {
517 496
  font-weight: bold;
518 497
}
519
/* line 405, ../sass/cdm.scss */
498
/* line 450, ../sass/cdm.scss */
520 499
.registration .registration-summary .referenced_typified_name {
521 500
  color: #999;
522 501
}
523
/* line 408, ../sass/cdm.scss */
502
/* line 453, ../sass/cdm.scss */
524 503
.registration .registration-summary .label {
525 504
  font-weight: bold;
526 505
}
......
528 507
/*
529 508
 * Theme settings page
530 509
 */
531
/* line 419, ../sass/cdm.scss */
510
/* line 464, ../sass/cdm.scss */
532 511
#system-theme-settings .image-preview {
533 512
  width: 600px;
534 513
  max-height: 150px;
535 514
  overflow: auto;
536 515
}
537
/* line 423, ../sass/cdm.scss */
516
/* line 468, ../sass/cdm.scss */
538 517
#system-theme-settings .image-preview img {
539 518
  max-width: none;
540 519
  /* reset style in mormalize.scss */
......
545 524
 *
546 525
 * using the same media queries here as in layout/_responsive.scss
547 526
 *****************************************************************************************/
548
/* line 436, ../sass/cdm.scss */
527
/* line 481, ../sass/cdm.scss */
549 528
#classification-breadcrumbs {
550 529
  font-size: 1.5em;
551 530
  line-height: 1.5em;
552 531
}
553 532

  
554 533
@media all and (min-width: 960px) {
555
  /* line 447, ../sass/cdm.scss */
534
  /* line 492, ../sass/cdm.scss */
556 535
  #classification-breadcrumbs {
557 536
    font-size: 1em;
558 537
  }
......
560 539
/***************************
561 540
 * TESTING ONLY 2020-02-20
562 541
 */
563
/* line 455, ../sass/cdm.scss */
542
/* line 500, ../sass/cdm.scss */
564 543
.font-noto {
565 544
  font-family: "Noto Sans", sans-serif !important;
566 545
}
546

  
547
/*# sourceMappingURL=cdm.css.map */
themes/zen_dataportal/css/cdm.css.map
1
{
2
"version": 3,
3
"mappings": "AAAA;;;;;GAKG;ACoFK,8DAAsD;AAGtD,4DAAoD;;ACnD1D;;;;kBACU;EACR,KAAK,EDoEI,OAAO;ECnEhB,eAAe,EAAE,IAAI;;;AAGvB;;;;gBACQ;EACN,eAAe,EAAE,SAAS;;;AAO1B;;;;;;;;mCACU;EACR,KAAK,EDsDU,OAAO;;;AClDxB;;;;yBACU;EACR,KAAK,ED+CE,OAAO;;;;AD5FpB,oBAAqB;EACnB,SAAS,EAAE,OAAO;;;;AAIlB,8BAAgB;EACd,UAAU,EAAE,IAAqB;EACjC,aAAa,EAAE,IAAqB;;;AAEtC,+BAAgB;EACd,WAAW,EAAE,IAAI;;;AAEnB,2BAAa;EACX,WAAW,EAAE,IAAI;;;;AAKnB,iCAAyB;EACvB,KAAK,EAAE,IAAI;;;AAGb,cAAM;EAIJ,YAAY,EAAE,GAAG;;;AAHjB,iBAAG;EACD,UAAU,EAAE,IAAI;;;AAGlB,sBAAQ;EACN,UAAU,EAAE,KAAK;EACjB,SAAS,EAAE,OAAO;;;;AAKtB,SAAU;EACR,KAAK,EAAC,KAAK;EACX,gBAAgB,ECkDI,IAAI;;;ADjDxB,YAAG;EACD,UAAU,EAAE,CAAC;EACb,WAAW,ECNE,MAAqB;;;;ADUtC,kBAAkB;EAChB,KAAK,EAAE,IAAI;;;;AAIX,8CAAiB;EACf,UAAU,EAAE,KAAK;;;AAEnB,oCAAO;EACL,UAAU,EAAE,MAAM;;;;AAItB,yDAA2D;EACzD,KAAK,EAAE,IAAI;EACX,aAAa,EAnEE,MAAqB;;;AAoEpC,kEAAG;EACD,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,KAAK;;;AAErB,kEAAG;EACD,MAAM,EAAE,CAAC;EACT,WAAW,EG5EmB,IAAI;;;AH8EpC,2EAAM;EACJ,MAAM,EAAE,CAAC;EAAE,2CAA2C;;;;AAI1D,eAAgB;EACd,OAAO,EAAE,OAAO;;;;AAIhB,6CAAO;EACL,WAAW,EAAE,IAAI;;;AAKrB;;GAEG;;AEhEH;yBACU;EACR,KAAK,EDoEI,OAAO;ECnEhB,eAAe,EAAE,IAAI;;;AAGvB;uBACQ;EACN,eAAe,EAAE,SAAS;;;AAO1B;;0CACU;EACR,KAAK,EDsDU,OAAO;;;AClDxB;gCACU;EACR,KAAK,ED+CE,OAAO;;;ADAhB,qBAAM;EACJ,MAAM,EAAE,KAAK;;;;AAQf,0BAAS;EACP,MAAM,EAAE,QAAuB;;;AAInC;;GAEG;;AAEH,UAAW;EACT,aAAa,EAxHE,MAAqB;EAyHpC,KAAK,EAAE,IAAI;;;AAGb;;;GAGG;;AAED,oBAAG;EACD,SAAS,ECzFI,IAAI;ED0FjB,WAAW,ECzFE,MAAqB;ED0FlC,WAAW,EAAE,IAAI;;;AAMrB;;GAEG;;AAGD,2BAAkB;EAChB,aAAa,EAAE,IAAI;EACnB,UAAU,EAAE,GAAG;;;AAGjB,0GAA6E;EAC3E,aAAa,EAAE,iBAAiB;EAChC,+BAA+B;EAC/B,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,CAAC;;;AAId;;GAEG;;AACH,gBAAiB;EACf,MAAM,EAAE,CAAC;;;;AAGT,iBAAG;EACD,WAAW,EAAE,CAAC;;;AACd,wBAAO;EACL,SAAS,EAAE,IAAI;;;;AAIrB,0BAA2B;EACzB,cAAc,EAAE,GAAG;;;AAGrB;;GAEG;;AAED,8BAAoB;EAClB,UAAU,EAAE,KAAK;;;AAEnB,4BAAkB;EAChB,KAAK,EAAE,IAAI;;;AACX,+BAAG;EACD,UAAU,EAAE,CAAC;EACb,gBAAgB,EAAE,IAAI;;;AAExB,+BAAG;EACD,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,MAAM;;;AAGtB,2BAAiB;EACf,WAAW,EAAE,IAAqB;EAClC,YAAY,EAAE,IAAqB;;;AAErC,wCAA8B;EAC5B,WAAW,EGvMmB,IAAI;EHwMlC,aAAa,EAAE,CAAC;;;AAChB,2CAAG;EACD,SAAS,EChKE,IAAI;EDiKf,WAAW,EChKA,MAAqB;EDiKhC,WAAW,EAAE,IAAI;;;AAIrB,8BAAoB;EAClB,KAAK,EAAE,IAAI;;;AAEb,4BAAkB;EAChB,SAAS,EC1KI,IAAI;ED2KjB,WAAW,EAAE,SAAS;EACtB,KAAK,EAAE,IAAI;EACX,YAAY,EGvNkB,IAAI;;;AHyNpC,wBAAc;EACZ,KAAK,EAAE,IAAI;;;AAIjB;;GAEG;;AAYD,aAAG;EACD,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,CAAC;EACT,YAAY,EAAE,CAAC;;;AAEf,uBAAY;EACV,OAAO,EAAE,IAAI;;;AAEf,gBAAG;EACD,OAAO,EAAE,gBAA6C;EACtD,UAAU,EAnBE,KAAsB;EAoBlC,QAAQ,EAAE,QAAQ;;;AAElB,wBAAU;EACR,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,MAAoD;EACzD,IAAI,EAAE,KAAwB;EAC9B,WAAW,EAzBD,oBAAkD;EA0B5D,aAAa,EA1BH,oBAAkD;EA2B5D,KAAK,EA5BO,IAAmB;EA6B/B,MAAM,EAAE,IAAI;;;AAGd,kCAAoB;EAClB,OAAO,EAAE,IAAI;;;AAGf,6CAA6B;EAC3B,QAAQ,EAAE,QAAQ;;;AAClB,oDAAS;EACP,OAAO,EAAE,EAAE;EACX,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,MAAoD;EACzD,IAAI,EAAE,KAAwB;EAC9B,WAAW,EA1CH,oBAAkD;EA2C1D,aAAa,EA3CL,oBAAkD;EA+C1D,KAAK,EAhDK,IAAmB;EAiD7B,MAAM,EAAE,IAAI;;;AAGhB,8DAAgD;EAC9C,OAAO,EAAE,IAAI;;;AAKnB,4BAAoB;EAClB,WAAW,EAAE,KAAwB;;;AAEnC,mDAAoB;EAClB,OAAO,EAAE,KAAK;;;AAEhB,yCAAU;EACR,OAAO,EAAE,KAAK;;;AAGd,mEAAS;EACP,OAAO,EAAE,KAAK;;;AAStB,4BAAkB;EAChB,OAAO,EAAE,YAAY;EACrB,KAAK,EA3Ee,MAAiB;EA4ErC,MAAM,EA5Ec,MAAiB;EA6ErC,KAAK,ECrNmB,OAAO;EDsN/B,gBAAgB,ECvNI,IAAI;EDwNxB,WAAW,EAAE,QAAgF;EAC7F,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,MAAM;;;AAKnB,8CAAoC;EAClC,KAAK,EC7Na,IAAI;;;;ADsOtB,2CAAY;EACV,gBAAgB,ECzOM,OAAO;;;AD0O7B,mDAAQ;EACN,YAAY,EAAE,GAAG;;;AAEnB,sDAAW;EACT,KAAK,EAAE,KAAK;EACZ,aAAa,EAAE,KAAsC;;;AAGzD,8DAA+B;EAC7B,MAAM,EAAE,OAAO;EACf,gBAAgB,EAAE,OACpB;;;AAEF,wBAAc;EACZ,OAAO,EApByB,MAAqB;EAqBrD,gBAAgB,EAAE,OAAuC;;;AAE3D,4BAAkB;EAChB,SAAS,EAAE,OAAO;EAClB,UAAU,EAAE,OAAmC;EAC/C,KAAK,ECxPY,OAAO;;;AD0P1B,wBAAc;EACZ,WAAW,EAAE,IAAI;;;;AAMnB,8CAAoB;EAClB,MAAM,EAAE,CAAC;EACT,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,GAAG;EACnB,gBAAgB,EC5QI,IAAI;;;AD6QxB,oDAAM;EACJ,aAAa,EAAE,kBAAqC;;;AAEtD,oDAAM;EACJ,gBAAgB,ECjRE,IAAI;;;ADkRtB,2DAAO;EACL,UAAU,EAAE,KAAK;EACjB,WAAW,EAAE,MAAM;EACnB,YAAY,EAAE,kBAAqC;EACnD,KAAK,EAAE,GAAG;;;AAGd,oGAAO;EACL,aAAa,EArDiB,MAAqB;EAsDnD,YAAY,EAtDkB,MAAqB;;;;AA0DzD,0BAA2B;EACzB,OAAO,EAAE,IAAI;EACb,eAAe,EA5DmB,MAAqB;EA6DvD,YAAY,EA7DsB,MAAqB;;AA8DvD,iCAAkC;;EAJpC,0BAA2B;IAKvB,qBAAqB,EAAG,cAAc;;;AAExC,iCAAkC;;EAPpC,0BAA2B;IAQvB,qBAAqB,EAAE,cAAc;;;;AAEvC,6BAAG;EACD,MAAM,EAAE,CAAC;;;AAKX;;GAEG;;AACH,qBAAsB;EACpB,UAAU,EAAE,GAAqB;EACjC,aAAa,EAAE,GAAqB;;;AAGtC;;GAEG;;AAGD,0BAAY;EACV,WAAW,EAAE,IAAI;;;AAGnB,8CAAiC;EAC/B,KAAK,EAAE,IAAI;;;AAKX,8CAAiB;EACf,WAAW,EAAE,IAAI;;;AAGrB,4CAA+B;EAC7B,KAAK,EAAE,IAAI;;;AACX,8CAAE;EACA,KAAK,EAAE,IAAI;;;AAEb,6DAAiB;EACf,WAAW,EAAE,IAAI;;;AAKnB,0DAAuB;EACrB,WAAW,EAAE,IAAI;;;AAEnB,6DAA0B;EACxB,KAAK,EAAE,IAAI;;;AAEb,0CAAO;EACL,WAAW,EAAE,IAAI;;;AAKvB;;GAEG;;AAGD,qCAAe;EACb,KAAK,EAAE,KAAK;EACZ,UAAU,EAAE,KAAK;EACjB,QAAQ,EAAE,IAAI;;;AACd,yCAAI;EACF,SAAS,EAAE,IAAI;EAAE,mCAAmC;;;AAM1D;;;;2FAI2F;;AAE3F,2BAA4B;EAC1B,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,KAAK;;;AAQpB,iCAAkC;;EAChC,2BAA4B;IAC1B,SAAS,EAAE,GAAG;;;AAIpB;;GAEG;;AACH,UAAW;EACT,WAAW,EAAE,kCAAqB",
4
"sources": ["../sass/cdm.scss","../sass/_init.scss","../sass/_mixins.scss","../sass-extensions/zen-grids/stylesheets/zen/_grids.scss"],
5
"names": [],
6
"file": "cdm.css"
7
}
themes/zen_dataportal/css/ie-legacy.css
1
/* line 30, ../sass/ie-legacy.scss */
2
.pie-element, .lt-ie9 #page {
3
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
4
  position: relative;
5
}
6

  
7
/* line 43, ../sass/ie-legacy.scss */
8
.pie-container {
9
  z-index: 0;
10
  position: relative;
11
}
12

  
13
/* line 47, ../sass/ie-legacy.scss */
14
.z-pie-element, .lt-ie9 #page {
15
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
16
  z-index: 0;
17
}
18

  
19
/* line 63, ../sass/ie-legacy.scss */
20
.lt-ie9 #header {
21
  /* 
22
   * reset right padding to zero and use margin-right instead,
23
   * this avoids the need for background-clip: content-box
24
   * which is not suppoorted in IE < 9
25
   */
26
  padding-right: 0;
27
  margin-right: 20px;
28
}
themes/zen_dataportal/css/pie.css
1
/* line 27, ../sass/pie.scss */
2
.pie-element, .bordered, .gradient {
3
  behavior: url("/d7/test/scripts/polyfills/PIE.htc");
4
  position: relative;
5
}
6

  
7
/* line 33, ../sass/pie.scss */
8
.bordered {
9
  -webkit-border-radius: 5px;
10
  -moz-border-radius: 5px;
11
  -ms-border-radius: 5px;
12
  -o-border-radius: 5px;
13
  border-radius: 5px;
14
}
15

  
16
/* line 38, ../sass/pie.scss */
17
.gradient {
18
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff0000), color-stop(100%, #0000ff));
19
  background: -webkit-linear-gradient(#ff0000, #0000ff);
20
  background: -moz-linear-gradient(#ff0000, #0000ff);
21
  background: -o-linear-gradient(#ff0000, #0000ff);
22
  -pie-background: linear-gradient(#ff0000, #0000ff);
23
  background: linear-gradient(#ff0000, #0000ff);
24
}
25

  
26
/* line 52, ../sass/pie.scss */
27
.pie-container, .widget {
28
  z-index: 0;
29
  position: relative;
30
}
31

  
32
/* line 56, ../sass/pie.scss */
33
.z-pie-element, .widget h3 {
34
  behavior: url("/d7/test/scripts/polyfills/PIE.htc");
35
  z-index: 0;
36
}
37

  
38
/* line 71, ../sass/pie.scss */
39
.has-gradient {
40
  behavior: url("/d7/test/scripts/polyfills/PIE.htc");
41
  position: relative;
42
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ff0000), color-stop(100%, #0000ff));
43
  background: -webkit-linear-gradient(#ff0000, #0000ff);
44
  background: -moz-linear-gradient(#ff0000, #0000ff);
45
  background: -o-linear-gradient(#ff0000, #0000ff);
46
  -pie-background: linear-gradient(#ff0000, #0000ff);
47
  background: linear-gradient(#ff0000, #0000ff);
48
}
themes/zen_dataportal/css/styles-rtl.css
5 5
/* Import Sass mixins, variables, Compass modules, etc. */
6 6
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
7 7
@import url("../fonts/notomono-webfont-2020/stylesheet.css");
8
/* line 30, ../sass/ie-legacy.scss */
9
.pie-element, .lt-ie9 #page {
10
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
11
  position: relative;
12
}
13

  
14
/* line 43, ../sass/ie-legacy.scss */
15
.pie-container {
16
  z-index: 0;
17
  position: relative;
18
}
19

  
20
/* line 47, ../sass/ie-legacy.scss */
21
.z-pie-element, .lt-ie9 #page {
22
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
23
  z-index: 0;
24
}
25

  
26
/* line 63, ../sass/ie-legacy.scss */
27
.lt-ie9 #header {
28
  /* 
29
   * reset right padding to zero and use margin-right instead,
30
   * this avoids the need for background-clip: content-box
31
   * which is not suppoorted in IE < 9
32
   */
33
  padding-right: 0;
34
  margin-right: 20px;
35
}
36

  
37 8
/* HTML element (SMACSS base) rules */
38 9
/**
39 10
 * @file
......
48 19
}
49 20

  
50 21
/* Address paddings set differently in IE 6/7. */
51
/* line 16, ../sass/_normalize-rtl.scss */
22
/* line 14, ../sass/_normalize-rtl.scss */
52 23
menu,
53 24
ol,
54 25
ul {
......
96 67
  /* line 89, ../sass/layouts/_responsive.scss */
97 68
  .sidebar-first #content {
98 69
    float: right;
99
    width: 66.66667%;
100
    margin-right: 33.33333%;
101
    margin-left: -100%;
70
    width: 40%;
71
    margin-right: 20%;
72
    margin-left: -60%;
102 73
  }
103 74
  /* line 94, ../sass/layouts/_responsive.scss */
104 75
  .sidebar-first .region-sidebar-first {
105 76
    float: right;
106
    width: 33.33333%;
77
    width: 20%;
107 78
    margin-right: 0%;
108
    margin-left: -33.33333%;
79
    margin-left: -20%;
109 80
  }
110 81

  
111 82
  /**
......
119 90
  /* line 104, ../sass/layouts/_responsive.scss */
120 91
  .sidebar-second #content {
121 92
    float: right;
122
    width: 66.66667%;
93
    width: 40%;
123 94
    margin-right: 0%;
124
    margin-left: -66.66667%;
95
    margin-left: -40%;
125 96
  }
126 97
  /* line 109, ../sass/layouts/_responsive.scss */
127 98
  .sidebar-second .region-sidebar-second {
128 99
    float: right;
129
    width: 33.33333%;
130
    margin-right: 66.66667%;
131
    margin-left: -100%;
100
    width: 20%;
101
    margin-right: 40%;
102
    margin-left: -60%;
132 103
  }
133 104

  
134 105
  /**
......
143 114
  /* line 119, ../sass/layouts/_responsive.scss */
144 115
  .two-sidebars #content {
145 116
    float: right;
146
    width: 66.66667%;
147
    margin-right: 33.33333%;
148
    margin-left: -100%;
117
    width: 40%;
118
    margin-right: 20%;
119
    margin-left: -60%;
149 120
  }
150 121
  /* line 124, ../sass/layouts/_responsive.scss */
151 122
  .two-sidebars .region-sidebar-first {
152 123
    float: right;
153
    width: 33.33333%;
124
    width: 20%;
154 125
    margin-right: 0%;
155
    margin-left: -33.33333%;
126
    margin-left: -20%;
156 127
  }
157 128
  /* line 129, ../sass/layouts/_responsive.scss */
158 129
  .two-sidebars .region-sidebar-second {
159 130
    float: right;
160
    width: 100%;
131
    width: 60%;
161 132
    margin-right: 0%;
162
    margin-left: -100%;
133
    margin-left: -60%;
163 134
    padding-left: 0;
164 135
    padding-right: 0;
165 136
    clear: right;
......
185 156
  /* line 139, ../sass/layouts/_responsive.scss */
186 157
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
187 158
    float: right;
188
    width: 33.33333%;
159
    width: 20%;
189 160
    margin-right: 0%;
190
    margin-left: -33.33333%;
161
    margin-left: -20%;
191 162
    clear: right;
192 163
  }
193 164
  /* line 144, ../sass/layouts/_responsive.scss */
194 165
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
195 166
    float: right;
196
    width: 33.33333%;
197
    margin-right: 33.33333%;
198
    margin-left: -66.66667%;
167
    width: 20%;
168
    margin-right: 20%;
169
    margin-left: -40%;
199 170
  }
200 171
  /* line 148, ../sass/layouts/_responsive.scss */
201 172
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
202 173
    float: right;
203
    width: 33.33333%;
204
    margin-right: 66.66667%;
205
    margin-left: -100%;
174
    width: 20%;
175
    margin-right: 40%;
176
    margin-left: -60%;
206 177
  }
207 178
}
208 179
/**
......
220 191
  /* line 168, ../sass/layouts/_responsive.scss */
221 192
  .sidebar-first #content {
222 193
    float: right;
223
    width: 75%;
224
    margin-right: 25%;
225
    margin-left: -100%;
194
    width: 60%;
195
    margin-right: 20%;
196
    margin-left: -80%;
226 197
  }
227 198
  /* line 173, ../sass/layouts/_responsive.scss */
228 199
  .sidebar-first .region-sidebar-first {
229 200
    float: right;
230
    width: 25%;
201
    width: 20%;
231 202
    margin-right: 0%;
232
    margin-left: -25%;
203
    margin-left: -20%;
233 204
  }
234 205

  
235 206
  /**
......
243 214
  /* line 183, ../sass/layouts/_responsive.scss */
244 215
  .sidebar-second #content {
245 216
    float: right;
246
    width: 75%;
217
    width: 60%;
247 218
    margin-right: 0%;
248
    margin-left: -75%;
219
    margin-left: -60%;
249 220
  }
250 221
  /* line 188, ../sass/layouts/_responsive.scss */
251 222
  .sidebar-second .region-sidebar-second {
252 223
    float: right;
253
    width: 25%;
254
    margin-right: 75%;
255
    margin-left: -100%;
224
    width: 20%;
225
    margin-right: 60%;
226
    margin-left: -80%;
256 227
  }
257 228

  
258 229
  /**
......
267 238
  /* line 198, ../sass/layouts/_responsive.scss */
268 239
  .two-sidebars #content {
269 240
    float: right;
270
    width: 50%;
271
    margin-right: 25%;
272
    margin-left: -75%;
241
    width: 40%;
242
    margin-right: 20%;
243
    margin-left: -60%;
273 244
  }
274 245
  /* line 203, ../sass/layouts/_responsive.scss */
275 246
  .two-sidebars .region-sidebar-first {
276 247
    float: right;
277
    width: 25%;
248
    width: 20%;
278 249
    margin-right: 0%;
279
    margin-left: -25%;
250
    margin-left: -20%;
280 251
  }
281 252
  /* line 208, ../sass/layouts/_responsive.scss */
282 253
  .two-sidebars .region-sidebar-second {
283 254
    float: right;
284
    width: 25%;
285
    margin-right: 75%;
286
    margin-left: -100%;
255
    width: 20%;
256
    margin-right: 60%;
257
    margin-left: -80%;
287 258
  }
288 259
}
289 260
/* Component (SMACSS module) rules */
......
310 281
 * Navigation bar.
311 282
 */
312 283
/* Main menu and secondary menu links and menu block links. */
313
/* line 27, ../sass/components/_misc-rtl.scss */
284
/* line 26, ../sass/components/_misc-rtl.scss */
314 285
#navigation .links,
315 286
#navigation .menu {
316 287
  text-align: right;
......
405 376
  text-align: right;
406 377
}
407 378

  
408
/* line 132, ../sass/components/_misc-rtl.scss */
379
/* line 131, ../sass/components/_misc-rtl.scss */
409 380
html.js #user-login-form li.openid-link,
410 381
#user-login-form li.openid-link {
411 382
  /* Un-do some of the padding on the ul list. */
......
444 415
/* SMACSS theme rules */
445 416
/* @import "theme-A-rtl"; */
446 417
/* @import "theme-B-rtl"; */
418

  
419
/*# sourceMappingURL=styles-rtl.css.map */
themes/zen_dataportal/css/styles-rtl.css.map
1
{
2
"version": 3,
3
"mappings": "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",
4
"sources": ["../sass/styles-rtl.scss","../sass/_init.scss","../sass/_normalize-rtl.scss","../sass/layouts/_responsive-rtl.scss","../sass/layouts/_responsive.scss","../sass-extensions/zen-grids/stylesheets/zen/_grids.scss","../sass/components/_misc-rtl.scss"],
5
"names": [],
6
"file": "styles-rtl.css"
7
}
themes/zen_dataportal/css/styles.css
8 8
/* Import Sass mixins, variables, Compass modules, etc. */
9 9
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
10 10
@import url("../fonts/notomono-webfont-2020/stylesheet.css");
11
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
12
@import url("../fonts/notomono-webfont-2020/stylesheet.css");
13
/* line 30, ../sass/ie-legacy.scss */
14
.pie-element, .lt-ie9 #page, #page {
15
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
16
  position: relative;
17
}
18

  
19
/* line 43, ../sass/ie-legacy.scss */
20
.pie-container {
21
  z-index: 0;
22
  position: relative;
23
}
24

  
25
/* line 47, ../sass/ie-legacy.scss */
26
.z-pie-element, .lt-ie9 #page, #page {
27
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
28
  z-index: 0;
29
}
30

  
31
/* line 63, ../sass/ie-legacy.scss */
32
.lt-ie9 #header {
33
  /* 
34
   * reset right padding to zero and use margin-right instead,
35
   * this avoids the need for background-clip: content-box
36
   * which is not suppoorted in IE < 9
37
   */
38
  padding-right: 0;
39
  margin-right: 20px;
40
}
41

  
42 11
/* HTML element (SMACSS base) rules */
43 12
/**
44 13
 * @file
......
60 29
 * HTML5 display definitions
61 30
 */
62 31
/* Correct `block` display not defined in IE 8/9. */
63
/* line 33, ../sass/_normalize.scss */
32
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
33
@import url("../fonts/notomono-webfont-2020/stylesheet.css");
34
/* line 23, ../sass/_normalize.scss */
64 35
article,
65 36
aside,
66 37
details,
......
76 47
}
77 48

  
78 49
/* Correct `inline-block` display not defined in IE 8/9. */
79
/* line 40, ../sass/_normalize.scss */
50
/* line 38, ../sass/_normalize.scss */
80 51
audio,
81 52
canvas,
82 53
video {
......
158 129
}
159 130

  
160 131
/* Address `font-family` inconsistency between `textarea` and other form elements. */
161
/* line 120, ../sass/_normalize.scss */
132
/* line 117, ../sass/_normalize.scss */
162 133
button,
163 134
input,
164 135
select,
......
186 157
}
187 158

  
188 159
/* Improve readability when focused and also mouse hovered in all browsers. */
189
/* line 154, ../sass/_normalize.scss */
160
/* line 153, ../sass/_normalize.scss */
190 161
a:active,
191 162
a:hover {
192 163
  outline: 0;
......
202 173
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
203 174
 */
204 175
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
205
/* line 170, ../sass/_normalize.scss */
176
/* line 169, ../sass/_normalize.scss */
206 177
p,
207 178
pre {
208 179
  margin: 1.6em 0;
......
275 246
}
276 247

  
277 248
/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
278
/* line 223, ../sass/_normalize.scss */
249
/* line 222, ../sass/_normalize.scss */
279 250
b,
280 251
strong {
281 252
  font-weight: bold;
......
290 261
/* Address differences between Firefox and other browsers. */
291 262
/* line 233, ../sass/_normalize.scss */
292 263
hr {
293
  -webkit-box-sizing: content-box;
294 264
  -moz-box-sizing: content-box;
265
  -webkit-box-sizing: content-box;
295 266
  box-sizing: content-box;
296 267
  height: 0;
297 268
  border: 1px solid #666;
......
307 278
}
308 279

  
309 280
/* Correct font family set oddly in Safari 5 and Chrome. */
310
/* line 253, ../sass/_normalize.scss */
281
/* line 248, ../sass/_normalize.scss */
311 282
code,
312 283
kbd,
313 284
pre,
......
341 312
}
342 313

  
343 314
/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
344
/* line 285, ../sass/_normalize.scss */
315
/* line 284, ../sass/_normalize.scss */
345 316
sub,
346 317
sup {
347 318
  font-size: 75%;
......
363 334
/**
364 335
 * Lists
365 336
 */
366
/* line 305, ../sass/_normalize.scss */
337
/* line 301, ../sass/_normalize.scss */
367 338
dl,
368 339
menu,
369 340
ol,
......
373 344
  margin: 14px 0;
374 345
}
375 346

  
376
/* line 313, ../sass/_normalize.scss */
347
/* line 312, ../sass/_normalize.scss */
377 348
ol ol,
378 349
ol ul,
379 350
ul ol,
......
389 360
}
390 361

  
391 362
/* Address paddings set differently in IE 6/7. */
392
/* line 325, ../sass/_normalize.scss */
363
/* line 323, ../sass/_normalize.scss */
393 364
menu,
394 365
ol,
395 366
ul {
......
398 369
}
399 370

  
400 371
/* Correct list images handled incorrectly in IE 7. */
401
/* line 332, ../sass/_normalize.scss */
372
/* line 331, ../sass/_normalize.scss */
402 373
nav ul,
403 374
nav ol {
404 375
  list-style: none;
......
455 426
  margin: 0 2px;
456 427
  /* Apply borders and padding that keep the vertical rhythm. */
457 428
  border-color: #c0c0c0;
458
  border-top-style: solid;
459 429
  border-top-width: 0.07143em;
430
  border-top-style: solid;
460 431
  padding-top: 0.48857em;
461
  border-bottom-style: solid;
462 432
  border-bottom-width: 0.07143em;
433
  border-bottom-style: solid;
463 434
  padding-bottom: 0.96857em;
464
  border-left-style: solid;
465 435
  border-left-width: 0.07143em;
436
  border-left-style: solid;
466 437
  padding-left: 0.96857em;
467
  border-right-style: solid;
468 438
  border-right-width: 0.07143em;
439
  border-right-style: solid;
469 440
  padding-right: 0.96857em;
470 441
}
471 442

  
......
492 463
 * 4. Improve appearance and consistency with IE 6/7.
493 464
 * 5. Keep form elements constrained in their containers.
494 465
 */
495
/* line 420, ../sass/_normalize.scss */
466
/* line 417, ../sass/_normalize.scss */
496 467
button,
497 468
input,
498 469
select,
......
509 480
  /* 4 */
510 481
  max-width: 100%;
511 482
  /* 5 */
512
  -webkit-box-sizing: border-box;
513 483
  -moz-box-sizing: border-box;
484
  -webkit-box-sizing: border-box;
514 485
  box-sizing: border-box;
515 486
  /* 5 */
516 487
}
......
519 490
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
520 491
 * the UA stylesheet.
521 492
 */
522
/* line 437, ../sass/_normalize.scss */
493
/* line 436, ../sass/_normalize.scss */
523 494
button,
524 495
input {
525 496
  line-height: normal;
......
531 502
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
532 503
 * Correct `select` style inheritance in Firefox 4+ and Opera.
533 504
 */
534
/* line 448, ../sass/_normalize.scss */
505
/* line 447, ../sass/_normalize.scss */
535 506
button,
536 507
select {
537 508
  text-transform: none;
......
546 517
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
547 518
 *    Known issue: inner spacing remains in IE 6.
548 519
 */
549
/* line 464, ../sass/_normalize.scss */
520
/* line 461, ../sass/_normalize.scss */
550 521
button,
551 522
html input[type="button"],
552 523
input[type="reset"],
......
562 533
/**
563 534
 * Re-set default cursor for disabled elements.
564 535
 */
565
/* line 476, ../sass/_normalize.scss */
536
/* line 475, ../sass/_normalize.scss */
566 537
button[disabled],
567 538
html input[disabled] {
568 539
  cursor: default;
......
574 545
 * 3. Remove excess padding in IE 7.
575 546
 *    Known issue: excess padding remains in IE 6.
576 547
 */
577
/* line 487, ../sass/_normalize.scss */
548
/* line 486, ../sass/_normalize.scss */
578 549
input[type="checkbox"],
579 550
input[type="radio"] {
580
  -webkit-box-sizing: border-box;
581 551
  -moz-box-sizing: border-box;
552
  -webkit-box-sizing: border-box;
582 553
  box-sizing: border-box;
583 554
  /* 1 */
584 555
  padding: 0;
......
598 569
input[type="search"] {
599 570
  -webkit-appearance: textfield;
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff