Commit 44d4e5d6ceeb7fb121bc34f3ba2d6ee319aa98c2
1 parent
31d9a4f6
updates
Showing
2 changed files
with
6 additions
and
8 deletions
controllets/generic-cards-container-controllet/generic-cards-container-controllet.html
... | ... | @@ -70,7 +70,7 @@ Example: |
70 | 70 | } |
71 | 71 | |
72 | 72 | ::content .card{ |
73 | - ms-transform: scale(0.80); | |
73 | + /* ms-transform: scale(0.80); | |
74 | 74 | -moz-transform: scale(0.80); |
75 | 75 | -o-transform: scale(0.80); |
76 | 76 | -webkit-transform: scale(0.80); |
... | ... | @@ -79,16 +79,14 @@ Example: |
79 | 79 | -moz-transform-origin: 0 0; |
80 | 80 | -o-transform-origin: 0 0; |
81 | 81 | -webkit-transform-origin: 0 0; |
82 | - transform-origin: 0 0; | |
83 | - height: 150px; | |
84 | - width: 150px; | |
85 | - margin: 0; | |
82 | + transform-origin: 0 0;*/ | |
83 | + margin: 10px; | |
86 | 84 | } |
87 | 85 | |
88 | 86 | </style> |
89 | 87 | |
90 | 88 | <div id="container" class="layout vertical"> |
91 | - <div class="grid"> | |
89 | + <div> | |
92 | 90 | <content></content> |
93 | 91 | </div> |
94 | 92 | </div> | ... | ... |
controllets/search-panel-controllet/search-panel-controllet.html
... | ... | @@ -79,9 +79,9 @@ Example: |
79 | 79 | <div class="horizontal layout"> |
80 | 80 | <neon-animated-pages selected="[[selected]]" entry-animation="[[entryAnimation]]" exit-animation="[[exitAnimation]]"> |
81 | 81 | <neon-animatable></neon-animatable> |
82 | - <neon-animatable><paper-input class="search-text" label="search" autosave="search_text" results="5" transition="fade-in-animation" value="{{searchKey}}"></paper-input></neon-animatable> | |
82 | + <neon-animatable><paper-input id="search_text" class="search-text" label="search" autosave="search_text" results="5" transition="fade-in-animation" value="{{searchKey}}"></paper-input></neon-animatable> | |
83 | 83 | </neon-animated-pages> |
84 | - <paper-icon-button icon="search" class="dropdown-trigger" on-click="_toggleClick"></paper-icon-button> | |
84 | + <paper-icon-button id="search_button" icon="search" class="dropdown-trigger" on-click="_toggleClick"></paper-icon-button> | |
85 | 85 | </div> |
86 | 86 | |
87 | 87 | </template> | ... | ... |