File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,6 @@ export class UUIRefNodeElement extends UUIRefElement {
173173 display : flex;
174174 position : relative;
175175 align-items : center;
176- margin : calc (var (--uui-size-2 ));
177176 }
178177
179178 # open-part {
@@ -182,6 +181,8 @@ export class UUIRefNodeElement extends UUIRefElement {
182181 cursor : pointer;
183182 align-self : stretch;
184183 display : flex;
184+ flex-grow : 1 ;
185+ padding : calc (var (--uui-size-2 ));
185186 }
186187
187188 # icon {
@@ -207,15 +208,16 @@ export class UUIRefNodeElement extends UUIRefElement {
207208 font-size : var (--uui-type-small-size );
208209 }
209210
210- : host (: not ([selectable ])) # open-part {
211- flex-grow : 1 ;
211+ : host ([selectable ]) # open-part {
212+ flex-grow : 0 ;
213+ padding : 0 ;
214+ margin : calc (var (--uui-size-2 ));
212215 }
213216
214217 : host (: not ([disabled ])) # open-part : hover # icon {
215218 color : var (--uui-color-interactive-emphasis );
216219 }
217220 : host (: not ([disabled ])) # open-part : hover # name {
218- font-weight : 700 ;
219221 text-decoration : underline;
220222 color : var (--uui-color-interactive-emphasis );
221223 }
Original file line number Diff line number Diff line change @@ -179,6 +179,10 @@ export class UUIRefElement extends SelectOnlyMixin(
179179 text-align : left;
180180 color : var (--uui-color-text );
181181 }
182+ a {
183+ text-decoration : none;
184+ color : inherit;
185+ }
182186
183187 slot [name = 'actions' ] {
184188 display : flex;
@@ -195,6 +199,7 @@ export class UUIRefElement extends SelectOnlyMixin(
195199 transition : opacity 120ms ;
196200 }
197201 : host (: hover ) # actions-container ,
202+ : host (: focus ) # actions-container ,
198203 : host (: focus-within ) # actions-container {
199204 opacity : 1 ;
200205 }
You can’t perform that action at this time.
0 commit comments