File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
src/frontend/apps/impress/src
features/docs/doc-search/assets Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export interface BoxProps {
24
24
$hasTransition ?: boolean | 'slow' ;
25
25
$height ?: CSSProperties [ 'height' ] ;
26
26
$justify ?: CSSProperties [ 'justifyContent' ] ;
27
+ $opacity ?: CSSProperties [ 'opacity' ] ;
27
28
$overflow ?: CSSProperties [ 'overflow' ] ;
28
29
$margin ?: MarginPadding ;
29
30
$maxHeight ?: CSSProperties [ 'maxHeight' ] ;
@@ -65,6 +66,7 @@ export const Box = styled('div')<BoxProps>`
65
66
${ ( { $minHeight } ) => $minHeight && `min-height: ${ $minHeight } ;` }
66
67
${ ( { $maxWidth } ) => $maxWidth && `max-width: ${ $maxWidth } ;` }
67
68
${ ( { $minWidth } ) => $minWidth && `min-width: ${ $minWidth } ;` }
69
+ ${ ( { $opacity } ) => $opacity && `opacity: ${ $opacity } ;` }
68
70
${ ( { $overflow } ) => $overflow && `overflow: ${ $overflow } ;` }
69
71
${ ( { $padding } ) => $padding && stylesPadding ( $padding ) }
70
72
${ ( { $position } ) => $position && `position: ${ $position } ;` }
Original file line number Diff line number Diff line change
1
+ @import url ('@gouvfr-lasuite/ui-kit/style' );
2
+ @import url ('./cunningham-tokens.css' );
3
+
1
4
: root {
2
5
/**
3
6
* Input
33
36
--c--components--button--border-radius
34
37
);
35
38
}
39
+
40
+ /**
41
+ * Tooltip
42
+ */
43
+ .c__tooltip {
44
+ padding : 4px 6px ;
45
+ }
Original file line number Diff line number Diff line change 1
- @import url ('@gouvfr-lasuite/ui-kit/style' );
2
- @import url ('../cunningham/cunningham-tokens.css' );
3
- @import url ('../cunningham/cunningham-custom-tokens.css' );
1
+ @import url ('../cunningham/cunningham-style.css' );
4
2
@import url ('@fontsource/material-icons' );
5
3
6
4
body {
You can’t perform that action at this time.
0 commit comments