Skip to content

Commit c12b59c

Browse files
committed
compile postcss
1 parent 348e106 commit c12b59c

File tree

105 files changed

+3371
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+3371
-0
lines changed

common.blocks/attach/attach.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.attach {
2+
touch-action: manipulation;
3+
}
4+
.attach__file,
5+
.attach__no-file,
6+
.attach_disabled .attach__clear,
7+
.attach .button__text {
8+
display: none;
9+
}

common.blocks/button/button.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.button {
2+
touch-action: manipulation;
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.test {
2+
width: 150px;
3+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.checkbox.checkbox_type_button .checkbox__control {
2+
position: absolute;
3+
4+
visibility: hidden;
5+
}

common.blocks/checkbox/checkbox.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.checkbox {
2+
touch-action: manipulation;
3+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.test {
2+
padding: 5px;
3+
width: 150px;
4+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.test {
2+
display:inline-block;
3+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.separator {
2+
width: 100%;
3+
height: 1px;
4+
margin: 25px 0;
5+
6+
border-top: 1px solid #808080;
7+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.test {
2+
display: inline-block;
3+
4+
padding-right: 30px;
5+
}

common.blocks/icon/icon.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.icon {
2+
display: inline-block;
3+
4+
text-align: center;
5+
6+
background: 50% no-repeat;
7+
}
8+
/* Hack for correct baseline positioning */
9+
.icon:empty:after {
10+
visibility: hidden;
11+
content: '\00A0';
12+
}
13+
/*
14+
* Чтобы иконка правильно позиционировалась внутри блочного контекста,
15+
* нужно прописать родителю свойство line-height со значением, равным высоте иконки
16+
*/
17+
.icon > img,
18+
.icon > svg {
19+
margin: -5.15em 0 -5em;
20+
/* 0.15 — magic number, empirically found */
21+
vertical-align: middle;
22+
}

0 commit comments

Comments
 (0)