forstok-ui-lib 5.2.29 → 5.2.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,82 @@
1
+ import styled from 'styled-components';
2
+ import { boxBase } from '../../assets/stylesheets/bases.styles';
3
+
4
+ export const SvgContainer = styled.div`
5
+ display: inline-block;
6
+ position: relative;
7
+ width: 100%;
8
+ vertical-align: middle;
9
+ overflow: hidden;
10
+ `
11
+ export const ContentLoaderListContainer = styled.div`
12
+ display: block;
13
+ max-height: calc(100vh - 286px);
14
+ height: calc(100vh - 286px);
15
+ overflow: hidden;
16
+ position: absolute;
17
+ margin-left: -30px;
18
+ margin-top: -30px
19
+ > div:not(:first-child) {
20
+ margin-top: 15px;
21
+ }
22
+ `
23
+ export const ContentLoaderListWrapper = styled.div`
24
+ ${boxBase}
25
+ display: inline-block;
26
+ width: auto;
27
+ height: 220px;
28
+ position: relative;
29
+ margin: 30px 30px 0px 30px;
30
+ `
31
+ export const ContentLoaderNonListContainer = styled.div`
32
+ ${boxBase}
33
+ display: inline-block;
34
+ width: 100%;
35
+ position: relative;
36
+ max-height: calc(100vh - 286px);
37
+ height: calc(100vh - 286px);
38
+ overflow: hidden;
39
+ `
40
+ export const ContentLoaderDetailItemContainer = styled.div`
41
+ display: inline-block;
42
+ margin-top: -15px;
43
+ `
44
+ export const ContentLoaderTableListContainer = styled.div`
45
+ display: inline-block;
46
+ width: 100%;
47
+ background: #FFF;
48
+ position: relative;
49
+ height: 100%;
50
+ overflow: hidden;
51
+ `
52
+ export const ContentLoaderPaginationWrapper = styled.div`
53
+ display: inline-block;
54
+ width: 100%;
55
+ border-radius: 10px;
56
+ height: 80px;
57
+ position: relative;
58
+ `
59
+ export const ContentLoaderDetailWrapper = styled.div`
60
+ ${boxBase}
61
+ display: inline-block;
62
+ max-height: 750px;
63
+ height: calc(100vh - 124px);
64
+ overflow: hidden;
65
+ padding-bottom: 28px;
66
+ `
67
+ export const ContentLoaderAdditionWrapper = styled.div`
68
+ display: inline-block;
69
+ background-color: #fff;
70
+ border-radius: 5px;
71
+ border: 1px solid #E3E3E3;
72
+ height: 89px;
73
+ margin-bottom: 20px;
74
+ `
75
+ export const ContentLoaderPopupWrapper = styled.div`
76
+ display: inline-block;
77
+ `
78
+ export const ContentLoaderCardWrapper = styled.div`
79
+ ${boxBase}
80
+ padding: 2em;
81
+ margin-bottom: 30px;
82
+ `