File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,13 +109,13 @@ export class BaseCommentItem extends LitElement {
109109
110110 ${ this . ua && this . configMapData ?. basic . showCommenterDevice ? html `<commenter- ua- bar .ua = ${ this . ua } > </ commenter- ua- bar> ` : '' }
111111
112- <time class= "item-meta-info text-xs text-text-2 " title = ${ formatDate ( this . creationTime ) } >
112+ <time class= "item-meta-info text-xs text-text-3 " title = ${ formatDate ( this . creationTime ) } >
113113 ${ timeAgo ( this . creationTime ) }
114114 </ time>
115115
116116 ${
117117 ! this . approved
118- ? html `<div class= "item-meta-info text-xs text-text-2 " > ${ msg ( 'Reviewing' ) } </ div> `
118+ ? html `<div class= "item-meta-info text-xs text-text-3 " > ${ msg ( 'Reviewing' ) } </ div> `
119119 : ''
120120 }
121121 </ div>
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ export class BaseForm extends LitElement {
162162 <butto n
163163 @click = ${ this . handleLogout }
164164 type= "button"
165- class = "form-logout text-xs text-text-2 hover:text-text-1 px-2 transition-all py-1.5 rounded-base border border-muted-3 opacity-90 hover:border-muted-4 hover:opacity-100 border-solid"
165+ class = "form-logout text-xs text-text-3 hover:text-text-1 px-3 transition-all py-2 rounded-base border border-muted-3 opacity-100 hover:border-muted-4 hover:opacity-70 border-solid"
166166 >
167167 ${ msg ( 'Logout' ) }
168168 </ butto n>
@@ -224,7 +224,7 @@ export class BaseForm extends LitElement {
224224 placeholder= ${ msg ( 'Website' ) }
225225 class= "input"
226226 / >
227- <a tabindex= "-1" href = ${ this . loginUrl } rel= "nofollow" class= "for m- login- link text- text-2 hover: text- text-1 text- xs transition- all select- none"> ${ msg ( '(Or login)' ) } </ a>
227+ <a tabindex= "-1" href = ${ this . loginUrl } rel= "nofollow" class= "for m- login- link text- text-3 hover: text- text-1 text- xs transition- all select- none"> ${ msg ( '(Or login)' ) } </ a>
228228 </ div> `
229229 : ''
230230 }
@@ -235,7 +235,7 @@ export class BaseForm extends LitElement {
235235 ! this . currentUser && ! this . allowAnonymousComments
236236 ? html `<butto n
237237 @click = ${ this . handleOpenLoginPage }
238- class= "form-login text-xs text-text-2 hover:text-text-1 px-2 transition-all py-1.5 rounded-base border border-muted-3 opacity-90 hover:border-muted-4 hover:opacity-100 border-solid"
238+ class= "form-login text-xs text-text-3 hover:text-text-1 px-3 transition-all py-2 rounded-base border border-muted-3 opacity-100 hover:border-muted-4 hover:opacity-70 border-solid"
239239 type = "butto n"
240240 >
241241 ${ msg ( 'Login' ) }
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export class CommentReplies extends LitElement {
7474 ${
7575 this . hasNext && ! this . loading
7676 ? html ` <div class= "replies-next flex justify-center my-2" >
77- <butto n class= "replies-next-button" @click = ${ this . fetchNext } > ${ msg ( 'Load more' ) } </ butto n>
77+ <butto n class= "replies-next-button pagination-button " @click = ${ this . fetchNext } > ${ msg ( 'Load more' ) } </ butto n>
7878 </ div> `
7979 : ''
8080 }
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export class CommenterUABar extends LitElement {
8181 ? html `
8282 <div class= "inline-flex items-center gap-1 bg-muted-3 rounded-base px-1.5 py-1" >
8383 ${ osIcon ? html `<i class= "${ osIcon } opacity-90 size-3" > </ i> ` : '' }
84- <span class= "text-xs text-text-2 " > ${ [ os . name , os . version ] . filter ( Boolean ) . join ( ' ' ) } </ span>
84+ <span class= "text-xs text-text-3 " > ${ [ os . name , os . version ] . filter ( Boolean ) . join ( ' ' ) } </ span>
8585 </ div>
8686 `
8787 : ''
@@ -91,7 +91,7 @@ export class CommenterUABar extends LitElement {
9191 ? html `
9292 <div class= "inline-flex items-center gap-1 bg-muted-3 rounded-base px-1.5 py-1" >
9393 ${ browserIcon ? html `<i class= "${ browserIcon } opacity-90 size-3" > </ i> ` : '' }
94- <span class= "text-xs text-text-2 " > ${ [ browser . name , browser . major ] . filter ( Boolean ) . join ( ' ' ) } </ span>
94+ <span class= "text-xs text-text-3 " > ${ [ browser . name , browser . major ] . filter ( Boolean ) . join ( ' ' ) } </ span>
9595 </ div>
9696 `
9797 : ''
You can’t perform that action at this time.
0 commit comments