mirror of
https://github.com/wassname/talk.git
synced 2026-08-10 12:41:02 +08:00
Adding withChangePassword to mutations and plugins API, styles
This commit is contained in:
@@ -23,6 +23,10 @@
|
||||
align-items: center;
|
||||
padding-left: 2px;
|
||||
padding-top: 16px;
|
||||
|
||||
.warningIcon, .checkIcon {
|
||||
font-size: 17px;
|
||||
}
|
||||
}
|
||||
|
||||
.actions {
|
||||
@@ -36,6 +40,7 @@
|
||||
|
||||
.title {
|
||||
color: #202020;
|
||||
margin: 0 0 20px;
|
||||
}
|
||||
|
||||
.detailList {
|
||||
@@ -81,6 +86,7 @@
|
||||
.detailLink {
|
||||
color: #00538A;
|
||||
text-decoration: none;
|
||||
font-size: 0.9em;
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -88,9 +94,6 @@
|
||||
|
||||
.checkIcon {
|
||||
color: #00CD73;
|
||||
& > i {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.warningIcon {
|
||||
@@ -104,16 +107,21 @@
|
||||
}
|
||||
|
||||
.button {
|
||||
border: solid 1px #787D80;
|
||||
border: 1px solid #787d80;
|
||||
background-color: transparent;
|
||||
height: 30px;
|
||||
font-size: 0.9em;
|
||||
font-size: 1em;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
.saveButton {
|
||||
background-color: #3498DB;
|
||||
border-color: #3498DB;
|
||||
color: white;
|
||||
|
||||
> i {
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: #399ee2;
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
import { compose } from 'recompose';
|
||||
import { withChangePassword } from 'plugin-api/beta/client/hocs';
|
||||
import ChangePassword from '../components/ChangePassword';
|
||||
|
||||
export default compose(withChangePassword)(ChangePassword);
|
||||
|
||||
Reference in New Issue
Block a user