From 96e36b6ca7da992b24e210bf2332d6435d742b15 Mon Sep 17 00:00:00 2001 From: AndyHee Date: Sat, 11 Nov 2017 17:13:01 +0700 Subject: [PATCH 1/3] Revert "Merge pull request #3899 from rebeka-catalina/rct/t/vier-dark_link_style" This reverts commit b2c6d34d99c31e700ee752f6cf02d6d077917727, reversing changes made to 6ae43962997d50691b3fdf0fd870f5f68612a587. --- view/theme/vier/dark.css | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/view/theme/vier/dark.css b/view/theme/vier/dark.css index 9fbe4d347c..4ee1fb15e8 100644 --- a/view/theme/vier/dark.css +++ b/view/theme/vier/dark.css @@ -8,15 +8,9 @@ hr { background-color: #343434 !important; } a, .wall-item-name, .fakelink { color: #989898 !important; } - .wall-item-content a { - font-weight: bold; + font-weight: bold; } - -.mail-conv-body a { - font-weight: bold; -} - .btn, .btn:hover{ color: #989898; border: 2px solid #0C1116; From 6a6dc08c06631da27a1b49dc786736165c7ce1cb Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Thu, 7 Dec 2017 14:42:44 +0700 Subject: [PATCH 2/3] Update dark.css revert changes --- view/theme/vier/dark.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/view/theme/vier/dark.css b/view/theme/vier/dark.css index 4ee1fb15e8..9fbe4d347c 100644 --- a/view/theme/vier/dark.css +++ b/view/theme/vier/dark.css @@ -8,9 +8,15 @@ hr { background-color: #343434 !important; } a, .wall-item-name, .fakelink { color: #989898 !important; } + .wall-item-content a { - font-weight: bold; + font-weight: bold; } + +.mail-conv-body a { + font-weight: bold; +} + .btn, .btn:hover{ color: #989898; border: 2px solid #0C1116; From 68ac89da58b16b8090a9fdf9b13b030a35fb98d8 Mon Sep 17 00:00:00 2001 From: Andy H3 Date: Thu, 7 Dec 2017 14:45:37 +0700 Subject: [PATCH 3/3] Update text.php Corrected typo --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index b2e0ac30d4..3fce67fa1c 100644 --- a/include/text.php +++ b/include/text.php @@ -1178,7 +1178,7 @@ function day_translate($s) { */ function day_short_translate($s) { $ret = str_replace(array('Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'), - array(t('Mon'), t('Tue'), t('Wed'), t('Thu'), t('Fri'), t('Sat'), t('Sund')), + array(t('Mon'), t('Tue'), t('Wed'), t('Thu'), t('Fri'), t('Sat'), t('Sun')), $s); $ret = str_replace(array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov','Dec'), array(t('Jan'), t('Feb'), t('Mar'), t('Apr'), t('May'), ('Jun'), t('Jul'), t('Aug'), t('Sep'), t('Oct'), t('Nov'), t('Dec')),