Compare commits
18 Commits
4cf64b4fec
...
a9ea9cfce2
Author | SHA1 | Date |
---|---|---|
chris | a9ea9cfce2 | |
jorge | 0cdd3ba1cb | |
jorge | 39855d1bb7 | |
jorge | c850da3421 | |
jorge | df6c4bcd34 | |
jorge | 0e46b528db | |
jorge | 53cf7f08e5 | |
jorge | 94f496b213 | |
jorge | aef6eba175 | |
jorge | 1df64ad110 | |
jorge | 1df83b1df5 | |
jorge | 6e9cc61485 | |
jorge | 7765a39ae0 | |
jorge | b3b4e57249 | |
jorge | bff2eab376 | |
jorge | 31c7edfe7b | |
jorge | 2a56062fd3 | |
jorge | 3b08513cfd |
File diff suppressed because one or more lines are too long
|
@ -64,5 +64,6 @@ button,.button {
|
|||
.end_of_page_button {
|
||||
@extend .button.small;
|
||||
display: flex;
|
||||
margin: 0 auto;
|
||||
margin: $global-margin auto;
|
||||
padding: $global-padding*0.5 $global-padding*5;
|
||||
}
|
||||
|
|
|
@ -27,6 +27,14 @@
|
|||
display:inline;
|
||||
width: 0;
|
||||
}
|
||||
&.tech-document-link {
|
||||
a {
|
||||
@include button;
|
||||
padding: $global-padding*0.5 $global-padding*1.5;
|
||||
margin-left: 0;
|
||||
font-size: $small-font-size;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
dl {
|
||||
.property {
|
||||
display:flex;
|
||||
dt {
|
||||
width: 14rem;
|
||||
max-width: 14rem;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -108,6 +108,7 @@
|
|||
@import "components/buttons";
|
||||
@import "components/accordion";
|
||||
@import "components/tables";
|
||||
@import "components/lists";
|
||||
|
||||
|
||||
// Templates
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -237,6 +237,14 @@ main {
|
|||
}
|
||||
p {
|
||||
@include xy-cell(12);
|
||||
position: relative;
|
||||
padding: $global-padding;
|
||||
padding-bottom: $global-padding * 3;
|
||||
.button {
|
||||
position:absolute;
|
||||
right:0;
|
||||
margin-top: $global-padding * 3;
|
||||
}
|
||||
}
|
||||
}
|
||||
@include breakpoint(medium){
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
['class' => 'advanced-search']
|
||||
); ?>
|
||||
|
||||
<h2><?php echo sprintf($this->translate('Item set results for "%s"'), $fulltextSearch); ?></h2>
|
||||
<h3 class="item-set-resutls-title"><?php echo sprintf($this->translate('Item set results for "%s"'), $fulltextSearch); ?></h3>
|
||||
|
||||
<?php echo $this->pagination(); ?>
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ $("#archive_page_title").html('<?php echo $_html ?>');
|
|||
</script>
|
||||
<!-- arc-hive insert ends -->
|
||||
|
||||
<h2><?php echo sprintf($this->translate('Search results for “%s”'), $fulltextSearch); ?></h2>
|
||||
<h3 class="search-results-for-title"><?php echo sprintf($this->translate('Search results for “%s”'), $fulltextSearch); ?></h3>
|
||||
|
||||
|
||||
<div class="results">
|
||||
|
|
Loading…
Reference in New Issue