wip
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
%fa:pencil-alt%%i18n:mobile.tags.mk-drive-file-viewer.rename%
|
||||
</button>
|
||||
<button onclick={ move }>
|
||||
%fa:folder-open%%i18n:mobile.tags.mk-drive-file-viewer.move%
|
||||
%fa:R folder-open%%i18n:mobile.tags.mk-drive-file-viewer.move%
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -43,7 +43,7 @@
|
||||
<virtual if={ notification.type == 'poll_vote' }>
|
||||
<img class="avatar" src={ notification.user.avatar_url + '?thumbnail&size=64' } alt="avatar"/>
|
||||
<div class="text">
|
||||
<p>%fa:pie-chart%{ notification.user.name }</p>
|
||||
<p>%fa:chart-pie%{ notification.user.name }</p>
|
||||
<p class="post-ref">{ getPostSummary(notification.post) }</p>
|
||||
</div>
|
||||
</virtual>
|
||||
|
@@ -77,7 +77,7 @@
|
||||
</a>
|
||||
<div class="text">
|
||||
<p>
|
||||
%fa:pie-chart%
|
||||
%fa:chart-pie%
|
||||
<a href={ '/' + notification.user.username }>{ notification.user.name }</a>
|
||||
</p>
|
||||
<a class="post-ref" href={ '/' + notification.post.user.username + '/' + notification.post.id }>{ getPostSummary(notification.post) }</a>
|
||||
|
@@ -50,7 +50,7 @@
|
||||
|
||||
document.title = title;
|
||||
// TODO: escape html characters in folder.name
|
||||
ui.trigger('title', '%fa:folder-open%' + folder.name);
|
||||
ui.trigger('title', '%fa:R folder-open%' + folder.name);
|
||||
});
|
||||
|
||||
this.refs.ui.refs.browser.on('open-file', (file, silent) => {
|
||||
|
@@ -55,7 +55,7 @@
|
||||
|
||||
this.on('mount', () => {
|
||||
document.title = 'Misskey';
|
||||
ui.trigger('title', '%fa:sticky-note-o%%i18n:mobile.tags.mk-post-page.title%');
|
||||
ui.trigger('title', '%fa:R sticky-note%%i18n:mobile.tags.mk-post-page.title%');
|
||||
document.documentElement.style.background = '#313a42';
|
||||
|
||||
Progress.start();
|
||||
|
@@ -22,8 +22,8 @@
|
||||
<ul>
|
||||
<li><a href="./settings/profile">%fa:user%%i18n:mobile.tags.mk-settings-page.profile%%fa:angle-right%</a></li>
|
||||
<li><a href="./settings/authorized-apps">%fa:puzzle-piece%%i18n:mobile.tags.mk-settings-page.applications%%fa:angle-right%</a></li>
|
||||
<li><a href="./settings/twitter">%fa:twitter%%i18n:mobile.tags.mk-settings-page.twitter-integration%%fa:angle-right%</a></li>
|
||||
<li><a href="./settings/signin-history">%fa:sign-in%%i18n:mobile.tags.mk-settings-page.signin-history%%fa:angle-right%</a></li>
|
||||
<li><a href="./settings/twitter">%fa:B twitter%%i18n:mobile.tags.mk-settings-page.twitter-integration%%fa:angle-right%</a></li>
|
||||
<li><a href="./settings/signin-history">%fa:sign-in-alt%%i18n:mobile.tags.mk-settings-page.signin-history%%fa:angle-right%</a></li>
|
||||
<li><a href="./settings/api">%fa:key%%i18n:mobile.tags.mk-settings-page.api%%fa:angle-right%</a></li>
|
||||
</ul>
|
||||
<ul>
|
||||
@@ -78,10 +78,10 @@
|
||||
line-height $height
|
||||
color #4d635e
|
||||
|
||||
> i:nth-of-type(1)
|
||||
> [data-fa]:nth-of-type(1)
|
||||
margin-right 4px
|
||||
|
||||
> i:nth-of-type(2)
|
||||
> [data-fa]:nth-of-type(2)
|
||||
display block
|
||||
position absolute
|
||||
top 0
|
||||
|
@@ -11,7 +11,7 @@
|
||||
|
||||
this.on('mount', () => {
|
||||
document.title = 'Misskey | %i18n:mobile.tags.mk-signin-history-page.signin-history%';
|
||||
ui.trigger('title', '%fa:sign-in%%i18n:mobile.tags.mk-signin-history-page.signin-history%');
|
||||
ui.trigger('title', '%fa:sign-in-alt%%i18n:mobile.tags.mk-signin-history-page.signin-history%');
|
||||
});
|
||||
</script>
|
||||
</mk-signin-history-page>
|
||||
|
@@ -11,7 +11,7 @@
|
||||
|
||||
this.on('mount', () => {
|
||||
document.title = 'Misskey | %i18n:mobile.tags.mk-twitter-setting-page.twitter-integration%';
|
||||
ui.trigger('title', '%fa:twitter%%i18n:mobile.tags.mk-twitter-setting-page.twitter-integration%');
|
||||
ui.trigger('title', '%fa:B twitter%%i18n:mobile.tags.mk-twitter-setting-page.twitter-integration%');
|
||||
});
|
||||
</script>
|
||||
</mk-twitter-setting-page>
|
||||
|
@@ -22,7 +22,7 @@
|
||||
<button ref="upload" onclick={ selectFile }>%fa:upload%</button>
|
||||
<button ref="drive" onclick={ selectFileFromDrive }>%fa:cloud%</button>
|
||||
<button class="kao" onclick={ kao }>%fa:R smile%</button>
|
||||
<button class="poll" onclick={ addPoll }>%fa:pie-chart%</button>
|
||||
<button class="poll" onclick={ addPoll }>%fa:chart-pie%</button>
|
||||
<input ref="file" type="file" accept="image/*" multiple="multiple" onchange={ changeFile }/>
|
||||
</div>
|
||||
<style>
|
||||
|
@@ -99,8 +99,7 @@
|
||||
overflow hidden
|
||||
text-overflow ellipsis
|
||||
|
||||
> [data-fa]
|
||||
> .icon
|
||||
[data-fa]
|
||||
margin-right 8px
|
||||
|
||||
> img
|
||||
@@ -124,7 +123,7 @@
|
||||
> [data-fa]
|
||||
transition all 0.2s ease
|
||||
|
||||
> [data-fa]
|
||||
> [data-fa].circle
|
||||
position absolute
|
||||
top 8px
|
||||
left 8px
|
||||
@@ -326,9 +325,8 @@
|
||||
> [data-fa]:first-child
|
||||
margin-right 0.5em
|
||||
|
||||
> .i
|
||||
> [data-fa].circle
|
||||
margin-left 6px
|
||||
vertical-align super
|
||||
font-size 10px
|
||||
color $theme-color
|
||||
|
||||
|
@@ -229,7 +229,7 @@
|
||||
</div>
|
||||
</section>
|
||||
<section class="activity">
|
||||
<h2>%fa:bar-chart%%i18n:mobile.tags.mk-user-overview.activity%</h2>
|
||||
<h2>%fa:chart-bar%%i18n:mobile.tags.mk-user-overview.activity%</h2>
|
||||
<div>
|
||||
<mk-user-overview-activity-chart user={ user }/>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user