forked from cybrespace/mastodon
Move doodle-relevant css into doodle css
This commit is contained in:
parent
f5f007f5e0
commit
e5bb9455a3
|
@ -47,6 +47,8 @@ export default class ModalRoot extends React.PureComponent {
|
||||||
return {
|
return {
|
||||||
overflowY: visible ? 'hidden' : null,
|
overflowY: visible ? 'hidden' : null,
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
state = {
|
state = {
|
||||||
revealed: false,
|
revealed: false,
|
||||||
};
|
};
|
||||||
|
|
|
@ -320,7 +320,6 @@ export default function compose(state = initialState, action) {
|
||||||
|
|
||||||
return item;
|
return item;
|
||||||
}));
|
}));
|
||||||
<<<<<<< HEAD
|
|
||||||
case REDRAFT:
|
case REDRAFT:
|
||||||
return state.withMutations(map => {
|
return state.withMutations(map => {
|
||||||
map.set('text', unescapeHTML(expandMentions(action.status)));
|
map.set('text', unescapeHTML(expandMentions(action.status)));
|
||||||
|
@ -339,10 +338,8 @@ export default function compose(state = initialState, action) {
|
||||||
map.set('spoiler_text', '');
|
map.set('spoiler_text', '');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
=======
|
|
||||||
case COMPOSE_DOODLE_SET:
|
case COMPOSE_DOODLE_SET:
|
||||||
return state.mergeIn(['doodle'], action.options);
|
return state.mergeIn(['doodle'], action.options);
|
||||||
>>>>>>> Doodle palette, options, fill tool (#172)
|
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,3 +84,13 @@ $doodleBg: #d9e1e8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.compose-form__buttons-separator {
|
||||||
|
border-left: 1px solid #c3c3c3;
|
||||||
|
margin: 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.compose-form__upload-button-icon {
|
||||||
|
line-height: 27px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -373,15 +373,6 @@
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
.compose-form__buttons-separator {
|
|
||||||
border-left: 1px solid #c3c3c3;
|
|
||||||
margin: 0 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.compose-form__upload-button-icon {
|
|
||||||
line-height: 27px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:active,
|
&:active,
|
||||||
|
@ -5399,7 +5390,6 @@ noscript {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
.trends {
|
.trends {
|
||||||
&__header {
|
&__header {
|
||||||
color: $dark-text-color;
|
color: $dark-text-color;
|
||||||
|
@ -5477,6 +5467,4 @@ noscript {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
=======
|
|
||||||
@import 'doodle';
|
@import 'doodle';
|
||||||
>>>>>>> Doodle palette, options, fill tool (#172)
|
|
||||||
|
|
Loading…
Reference in New Issue