mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-27 00:33:17 +00:00
Merge pull request #862 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
6481a71fe5
10 changed files with 10 additions and 8 deletions
BIN
public/css/app.css
vendored
BIN
public/css/app.css
vendored
Binary file not shown.
BIN
public/css/appdark.css
vendored
BIN
public/css/appdark.css
vendored
Binary file not shown.
BIN
public/js/app.js
vendored
BIN
public/js/app.js
vendored
Binary file not shown.
BIN
public/js/micro.js
vendored
BIN
public/js/micro.js
vendored
Binary file not shown.
BIN
public/js/status.js
vendored
BIN
public/js/status.js
vendored
Binary file not shown.
BIN
public/js/timeline.js
vendored
BIN
public/js/timeline.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -217,7 +217,7 @@
|
|||
</a>
|
||||
</p>
|
||||
</div>
|
||||
<p class="float-right"><a class="btn btn-primary font-weight-bold py-1" href="#">Follow</a></p>
|
||||
<p class="float-right"><!-- <a class="btn btn-primary font-weight-bold py-1" href="#">Follow</a> --></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -294,17 +294,11 @@
|
|||
</template>
|
||||
|
||||
<style type="text/css" scoped>
|
||||
.text-lighter {
|
||||
color:#B8C2CC !important;
|
||||
}
|
||||
.postPresenterContainer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
background: #fff;
|
||||
}
|
||||
.cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
.word-break {
|
||||
word-break: break-all;
|
||||
}
|
||||
|
@ -348,7 +342,7 @@
|
|||
this.$nextTick(function () {
|
||||
$('[data-toggle="tooltip"]').tooltip()
|
||||
let cachedSettings = window.ls.get('pixelfed-classicui-settings');
|
||||
if(cachedSettings.hasOwnProperty('notify')) {
|
||||
if(cachedSettings.length && cachedSettings.hasOwnProperty('notify')) {
|
||||
this.modes = cachedSettings;
|
||||
} else {
|
||||
window.ls.set('pixelfed-classicui-settings', this.modes);
|
||||
|
|
8
resources/assets/sass/custom.scss
vendored
8
resources/assets/sass/custom.scss
vendored
|
@ -491,3 +491,11 @@ details summary::-webkit-details-marker {
|
|||
#s-modal .modal-content {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.text-lighter {
|
||||
color:#B8C2CC !important;
|
||||
}
|
||||
|
||||
.cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue