消息
This commit is contained in:
104
TUIKit/components/TUIGroup/create-group/style/color.scss
Normal file
104
TUIKit/components/TUIGroup/create-group/style/color.scss
Normal file
@@ -0,0 +1,104 @@
|
||||
.group {
|
||||
background: #FFF;
|
||||
|
||||
&-list {
|
||||
&-item {
|
||||
background: #FFF;
|
||||
|
||||
label {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-weight: 400;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
|
||||
input {
|
||||
border: 1px solid rgba(131, 137, 153, 0.40);
|
||||
font-weight: 400;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
&-edit {
|
||||
background: #FFF;
|
||||
}
|
||||
}
|
||||
|
||||
&-profile-footer {
|
||||
background: #FFF;
|
||||
}
|
||||
|
||||
&-h5 {
|
||||
background: #F7F8FA;
|
||||
|
||||
&-list-item-introduction {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-weight: 400;
|
||||
color: #888;
|
||||
|
||||
a {
|
||||
color: #006EFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.select {
|
||||
flex: 1;
|
||||
|
||||
a {
|
||||
color: #006EFF;
|
||||
}
|
||||
|
||||
&-item {
|
||||
border: 1px solid rgba(131, 137, 153, 0.40);
|
||||
|
||||
&-header {
|
||||
.left {
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
|
||||
&-detail {
|
||||
color: #4F4F4F;
|
||||
}
|
||||
}
|
||||
|
||||
.selected {
|
||||
border: 1px solid #006EFF;
|
||||
}
|
||||
}
|
||||
|
||||
header {
|
||||
background: #FFF;
|
||||
|
||||
h1 {
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
color: #000;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
background: #FFF;
|
||||
border: 1px solid #DDD;
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
color: #828282;
|
||||
}
|
||||
|
||||
.btn-submit {
|
||||
background: #3370FF;
|
||||
border: 0 solid #2F80ED;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-weight: 400;
|
||||
color: #FFF;
|
||||
letter-spacing: 0;
|
||||
|
||||
&:disabled {
|
||||
background: #e8e8e9;
|
||||
border: 1px solid #DDD;
|
||||
color: #FFF;
|
||||
}
|
||||
}
|
||||
97
TUIKit/components/TUIGroup/create-group/style/h5.scss
Normal file
97
TUIKit/components/TUIGroup/create-group/style/h5.scss
Normal file
@@ -0,0 +1,97 @@
|
||||
.group-h5 {
|
||||
max-height: none;
|
||||
height: 100%;
|
||||
border-radius: 0;
|
||||
padding: 0;
|
||||
|
||||
.group-box {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
|
||||
.group-box-header {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
padding: 16px 18px;
|
||||
|
||||
.icon-close {
|
||||
position: absolute;
|
||||
left: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
.group-list {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
justify-content: flex-end;
|
||||
margin-top: 12px;
|
||||
overflow: hidden;
|
||||
|
||||
.group-introduction-list{
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: auto;
|
||||
padding: 12px 18px;
|
||||
}
|
||||
|
||||
&-item {
|
||||
padding: 14px 18px;
|
||||
border-bottom: 1px solid #E5E5E5;
|
||||
|
||||
&-label {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.group-list-edit {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
|
||||
.group-name-input {
|
||||
flex: 0 0 auto;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.group-profile-footer {
|
||||
box-shadow: inset 0 1px 0 0 #eee;
|
||||
padding: 12px 18px;
|
||||
}
|
||||
}
|
||||
|
||||
&-list-item-content {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
|
||||
.content {
|
||||
width: 0;
|
||||
flex: 1;
|
||||
padding: 0 12px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
text-align: end;
|
||||
}
|
||||
}
|
||||
|
||||
&-list-item-introduction {
|
||||
padding: 12px 18px;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.select-item-type {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
4
TUIKit/components/TUIGroup/create-group/style/index.scss
Normal file
4
TUIKit/components/TUIGroup/create-group/style/index.scss
Normal file
@@ -0,0 +1,4 @@
|
||||
@import '../../../../assets/styles/common';
|
||||
@import './color';
|
||||
@import './web';
|
||||
@import './h5';
|
||||
106
TUIKit/components/TUIGroup/create-group/style/web.scss
Normal file
106
TUIKit/components/TUIGroup/create-group/style/web.scss
Normal file
@@ -0,0 +1,106 @@
|
||||
.group {
|
||||
padding: 30px;
|
||||
box-sizing: border-box;
|
||||
width: 750px;
|
||||
max-height: calc(100vh - 100px);
|
||||
overflow-y: auto;
|
||||
border-radius: 10px;
|
||||
|
||||
.group-box {
|
||||
.group-box-header {
|
||||
display: flex;
|
||||
flex-direction: row-reverse;
|
||||
justify-content: space-between;
|
||||
|
||||
.group-box-header-title {
|
||||
font-size: 18px;
|
||||
line-height: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&-list {
|
||||
&-item {
|
||||
display: flex;
|
||||
padding: 10px 0;
|
||||
|
||||
&-label {
|
||||
width: 84px;
|
||||
}
|
||||
}
|
||||
|
||||
input {
|
||||
flex: 1;
|
||||
box-sizing: border-box;
|
||||
padding: 6px 10px;
|
||||
border-radius: 2px;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.select {
|
||||
flex: 1;
|
||||
|
||||
&-item {
|
||||
padding: 12px 20px !important;
|
||||
border-radius: 2px;
|
||||
margin-bottom: 20px !important;
|
||||
|
||||
&-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
.left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 14px;
|
||||
|
||||
.icon {
|
||||
margin-right: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-selected {
|
||||
position: relative;
|
||||
left: 12px;
|
||||
top: -4px;
|
||||
}
|
||||
}
|
||||
|
||||
&-type {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
&-detail {
|
||||
padding-top: 6px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.link {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.group-profile-footer {
|
||||
padding-top: 10px;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
width: 82px;
|
||||
height: 32px;
|
||||
border-radius: 4px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.btn-submit {
|
||||
width: 82px;
|
||||
height: 32px;
|
||||
border-radius: 4px;
|
||||
margin-left: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
Reference in New Issue
Block a user