File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,17 @@ define(['jquery'], ($) => {
77}
88.on-tabs-tiles .cell {
99 position: relative;
10- border: 2px solid white;
10+ border: 1px solid #e0e0e0;
11+ border-radius: 4px;
12+ margin: 2px;
13+ transition:
14+ transform 0.15s ease,
15+ box-shadow 0.15s ease;
16+ }
17+
18+ .on-tabs-tiles .cell.active.link:hover {
19+ transform: scale(1.03);
20+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
1121}
1222
1323.on-tabs-tiles .cell.inactive {
@@ -181,7 +191,7 @@ define(['jquery'], ($) => {
181191 let iconType = / ( f a | c i - i c o n ) - / . exec ( icon ) ;
182192 if ( iconType ) iconType = iconType [ 1 ] ;
183193 const $el = $ ( `
184- <div class="cell ${ active ? 'active' : 'inactive' } ">
194+ <div class="cell ${ active ? 'active' : 'inactive' } ${ options . isLink ( tile ) ? 'link' : '' } ">
185195 <div class='content'>
186196 <div class='header'>${ header || '' } </div>
187197 ${
You can’t perform that action at this time.
0 commit comments