File: style-rtl.css

package info (click to toggle)
wordpress 6.9%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136,360 kB
  • sloc: javascript: 534,044; php: 301,426; cs: 6,126; sh: 457; xml: 22; makefile: 14
file content (65 lines) | stat: -rw-r--r-- 1,358 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.admin-ui-page{
  background-color:#fff;
  color:#2f2f2f;
  container:admin-ui-page/inline-size;
  display:flex;
  flex-flow:column;
  height:100%;
  position:relative;
  z-index:1;
}
@media not (prefers-reduced-motion){
  .admin-ui-page{
    transition:width .2s ease-out;
  }
}

.admin-ui-page__header{
  background:#fff;
  border-bottom:1px solid #f0f0f0;
  padding:16px 48px;
  position:sticky;
  top:0;
}
@container (max-width: 430px){
  .admin-ui-page__header{
    padding:16px 24px;
  }
}

.admin-ui-page__header-subtitle{
  color:#757575;
  font-family:-apple-system,"system-ui",Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
  font-size:13px;
  font-weight:400;
  line-height:20px;
  margin:0;
  padding-block-end:8px;
}

.admin-ui-page__content{
  display:flex;
  flex-direction:column;
  flex-grow:1;
  overflow:auto;
}
.admin-ui-page__content.has-padding{
  padding:16px 20px;
}
@container (max-width: 430px){
  .admin-ui-page__content.has-padding{
    padding:16px 24px;
  }
}

.show-icon-labels .admin-ui-page__header-actions .components-button.has-icon{
  padding:0 8px;
  width:auto;
}
.show-icon-labels .admin-ui-page__header-actions .components-button.has-icon svg{
  display:none;
}
.show-icon-labels .admin-ui-page__header-actions .components-button.has-icon:after{
  content:attr(aria-label);
  font-size:12px;
}