diff --git a/themes/default/css/color.css b/css/color.css similarity index 91% rename from themes/default/css/color.css rename to css/color.css index 0e1a369..bae9fef 100644 --- a/themes/default/css/color.css +++ b/css/color.css @@ -20,6 +20,21 @@ textarea,input[type="text"]{ border-radius: 5px; } +.polloption{ + box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.1); + border-radius: 5px; + display:block; + margin:5px; + padding:5px; + background-color: #ddd; +} + +.polloption:hover{ + background-color: #305792; + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + color: white; +} + input[type="radio"]:checked+label,select { color: black; } @@ -202,7 +217,7 @@ input[type="checkbox"]:checked+label { box-shadow: 1px 1px 2px black; } -.postform { +.postform,.searchmobile { background-color: white; box-shadow: 1px 1px 2px black; } diff --git a/themes/default/css/mobile.css b/css/mobile.css similarity index 99% rename from themes/default/css/mobile.css rename to css/mobile.css index f2e5705..cd51a7b 100644 --- a/themes/default/css/mobile.css +++ b/css/mobile.css @@ -148,7 +148,7 @@ aside { display: table-cell; line-height: 45px; height: 100%; - width: 50px; + width: 40px; position: relative; } @@ -382,8 +382,7 @@ aside { border-radius: 3px; } -.postform { - display:none; +.postform,.searchmobile { position:fixed; width: 100vw !important; left:0px; @@ -393,7 +392,7 @@ aside { z-index: 99; } -#postform { +#postform,#searchmobile { display:none; } diff --git a/themes/default/css/style.css b/css/style.css similarity index 99% rename from themes/default/css/style.css rename to css/style.css index 359ae7b..13722d6 100644 --- a/themes/default/css/style.css +++ b/css/style.css @@ -378,6 +378,10 @@ aside { border-radius: 5px; } +#searchmobile{ + display:none; +} + .postform { width:650px; float: left; diff --git a/include/functions.php b/include/functions.php index 281a560..987a4e4 100644 --- a/include/functions.php +++ b/include/functions.php @@ -86,14 +86,14 @@ function emoji_list($val){ } function starts_with($string,$search){ - if (substr($string,0,strlen($search)) == $search){ + if (substr(strtolower($string),0,strlen($search)) == strtolower($search)){ return true; } return false; } function contains($string,$search){ - if (is_numeric(strpos($string,$search))){ + if (is_numeric(strpos(strtolower($string),strtolower($search)))){ return true; } return false; @@ -147,6 +147,24 @@ function user_info($user) { ); } +function api_getv2($url) { + global $srv; + global $token; + + $curl = curl_init(); + curl_setopt($curl, CURLOPT_URL, "https://$srv/api/v2/" . $url); + if (!is_null($token)) { + curl_setopt($curl, CURLOPT_HTTPHEADER, array( + 'Authorization: Bearer ' . $token + )); + } + curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); + $result = curl_exec($curl); + curl_close($curl); + + return json_decode($result, true); +} + /* a function to make an authenticated general GET api call to the logged-in instance */ function api_get($url) { @@ -742,6 +760,10 @@ function timeline($query) { case "bookmarks": $array = api_get("bookmarks?limit=25{$next}"); break; + + case "search": + $array = api_getv2("search?limit=40&q=".$query['search']."{$next}")['statuses']; + break; case "account": $info = api_get("accounts/verify_credentials"); @@ -859,14 +881,18 @@ function themes($mode,$name = false){ case "file": $theme = sanitize($user_settings['theme']); - //if (file_exists("themes/$theme/$name")){ + if (file_exists("themes/$theme/$name")){ return "themes/$theme/$name"; - //} + } else { + return "$name"; + } case "get": $theme = sanitize($user_settings['theme']); - //if (file_exists("themes/$theme/$name")){ + if (file_exists("themes/$theme/$name")){ return file_get_contents("themes/$theme/$name"); - //} + } else { + return file_get_contents("$name"); + } } -} \ No newline at end of file +} diff --git a/include/init.php b/include/init.php index f91999f..0a8182d 100644 --- a/include/init.php +++ b/include/init.php @@ -43,7 +43,7 @@ $tl['mode'] = $_GET['mode']; } else { foreach ($_GET as $key => $value){ - if(in_array($key,array("user","thread","local","tag","list","federated"))){ + if(in_array($key,array("user","thread","local","tag","list","federated","search"))){ $tl['mode'] = $key; $tl[$key] = $value; } diff --git a/js/scripts.js b/js/scripts.js index 7b4cbdd..04d6fc9 100644 --- a/js/scripts.js +++ b/js/scripts.js @@ -98,17 +98,19 @@ $('body').on('click', '.replies', function(e) { }); }); -$('body').on('click', '.ldr:not(.topicon)', function(e) { - $('.topicon').each(function(a){ +$('body').on('click', '.ldr:not(.tlicon)', function(e) { + $('.tlicon').each(function(a){ $( this ).removeClass('tiselected') }); }); $('body').on('click', '.ldr', function(e) { e.preventDefault(); + location.hash = "#top"; $('#loader').html(''); $('#loaded').remove(); var url = $(this).attr('href'); + var id = $(this).attr('id'); localStorage.setItem("content", $('#content .element').detach()); $('#content').html('
'); $.get(url + "&ajax=1", function(data) { @@ -336,6 +338,10 @@ function getMode() { console.log('tag'); return "&tag=" + getUrlParameter('tag'); } + if (typeof getUrlParameter('search') !== 'undefined') { + console.log('tag'); + return "&search=" + getUrlParameter('search'); + } return "&mode=federated"; }; @@ -344,6 +350,9 @@ function loadmore(){ if (typeof thread !== 'undefined') { return false; } + if (typeof getUrlParameter('search') !== 'undefined') { + return false; + } var thread = getUrlParameter('thread'); if (typeof thread === 'undefined') { var error = $(".error").length; @@ -379,6 +388,10 @@ function newPosts() { if (typeof thread !== 'undefined') { return false; } + var search = getUrlParameter('search'); + if (typeof search !== 'undefined') { + return false; + } var error = $(".error").length; if (error >= 1) { return false; @@ -463,4 +476,4 @@ function themecheck(name){ else{ $('#customtheme').css("display","none"); } -}; \ No newline at end of file +}; diff --git a/layout/footer.php b/layout/footer.php index f7a55e3..bb97871 100644 --- a/layout/footer.php +++ b/layout/footer.php @@ -64,6 +64,16 @@ $query = http_build_query(array_filter(array( $('body').on('click', '.compose', function(e) { $('#postform').toggle(); }); + + $('body').on('click', '.searchform', function(e) { + $(this).prev().toggle(); + }); + + $('body').on('click', '.searchmobiletoggle', function(e) { + $('#usermenu').off('hover'); + $('#usermenu').off('active'); + $('#searchmobile').toggle(); + }); $("body").on("keydown", "form", function (e) { if (e.ctrlKey && e.keyCode === 13) { @@ -71,8 +81,8 @@ $query = http_build_query(array_filter(array( } }); - $('.topicon').click(function(){ - $('.topicon').each(function(a){ + $('.tlicon').click(function(){ + $('.tlicon').each(function(a){ $( this ).removeClass('tiselected') }); $( this ).addClass('tiselected'); diff --git a/layout/header.php b/layout/header.php index f904664..efdfe28 100644 --- a/layout/header.php +++ b/layout/header.php @@ -1,6 +1,6 @@ - Dashboard FE + <?php echo $setting['appname']; ?> @@ -75,41 +75,42 @@ if ($logedin) {
- " style="font-family: 'patua', serif; font-weight:bold; color:white; font-size:20px; text-decoration:none">Dashboard FE + " style="font-family: 'patua', serif; font-weight:bold; color:white; font-size:20px; text-decoration:none"> - '> + '> - '> + '> - '> + '> - '> + '> - '> + '> - '> + '> - + - + - - + + + + + @@ -133,11 +134,10 @@ endif; ?>
  •  Direct
  •  Bookmarks
  • - + +
  •  Search
  • - +
  •  Settings
  •  Log Out
  • @@ -177,9 +177,19 @@ endif; ?>
    - + +
    +
    +
    +
    + X + + +
    +
    +
    + +
    )'>
    diff --git a/layout/sidebar.php b/layout/sidebar.php index 10cb7fc..ecc5492 100644 --- a/layout/sidebar.php +++ b/layout/sidebar.php @@ -12,6 +12,10 @@ if ($logedin || $tl['mode'] == 'user') {
    (@" . $info['acct'] . ")
    + +
    +
    +
      @@ -39,8 +43,10 @@ if ($logedin) { } else { echo "
      +
      " . $setting['appname'] . "
      " . $setting['description'] . " +
      "; } ?> diff --git a/login/bg/13056466555_9d2f308c39_b.jpg b/login/bg/13056466555_9d2f308c39_b.jpg deleted file mode 100644 index 11179a8..0000000 Binary files a/login/bg/13056466555_9d2f308c39_b.jpg and /dev/null differ diff --git a/login/bg/13056847944_20bde73900_b.jpg b/login/bg/13056847944_20bde73900_b.jpg deleted file mode 100644 index 5d6135e..0000000 Binary files a/login/bg/13056847944_20bde73900_b.jpg and /dev/null differ diff --git a/login/bg/13057062975_e1db98baab_b.jpg b/login/bg/13057062975_e1db98baab_b.jpg deleted file mode 100644 index d0ec0ba..0000000 Binary files a/login/bg/13057062975_e1db98baab_b.jpg and /dev/null differ diff --git a/login/bg/185.jpg b/login/bg/185.jpg new file mode 100644 index 0000000..fc1e0b1 Binary files /dev/null and b/login/bg/185.jpg differ diff --git a/login/bg/29a.jpg b/login/bg/29a.jpg new file mode 100644 index 0000000..9357397 Binary files /dev/null and b/login/bg/29a.jpg differ diff --git a/login/bg/33993885812_9524a46bc3_b.jpg b/login/bg/33993885812_9524a46bc3_b.jpg deleted file mode 100644 index 330aac8..0000000 Binary files a/login/bg/33993885812_9524a46bc3_b.jpg and /dev/null differ diff --git a/login/bg/34283627225_d734c152a1_b.jpg b/login/bg/34283627225_d734c152a1_b.jpg deleted file mode 100644 index ab5d3df..0000000 Binary files a/login/bg/34283627225_d734c152a1_b.jpg and /dev/null differ diff --git a/login/bg/39107967634_743cc84ee8_b.jpg b/login/bg/39107967634_743cc84ee8_b.jpg deleted file mode 100644 index 6574fc2..0000000 Binary files a/login/bg/39107967634_743cc84ee8_b.jpg and /dev/null differ diff --git a/login/bg/4697225264_15edb40a60_b.jpg b/login/bg/4697225264_15edb40a60_b.jpg deleted file mode 100644 index 4be32e0..0000000 Binary files a/login/bg/4697225264_15edb40a60_b.jpg and /dev/null differ diff --git a/login/bg/48348030457_68de5d53ed_b.jpg b/login/bg/48348030457_68de5d53ed_b.jpg deleted file mode 100644 index 17462b1..0000000 Binary files a/login/bg/48348030457_68de5d53ed_b.jpg and /dev/null differ diff --git a/login/bg/a4f.jpg b/login/bg/a4f.jpg new file mode 100644 index 0000000..7b4c30b Binary files /dev/null and b/login/bg/a4f.jpg differ diff --git a/login/bg/a8e.jpg b/login/bg/a8e.jpg new file mode 100644 index 0000000..43dfe5c Binary files /dev/null and b/login/bg/a8e.jpg differ diff --git a/login/bg/af10e.jpg b/login/bg/af10e.jpg new file mode 100644 index 0000000..8ff7b36 Binary files /dev/null and b/login/bg/af10e.jpg differ diff --git a/login/bg/e3f.jpg b/login/bg/e3f.jpg new file mode 100644 index 0000000..8d04341 Binary files /dev/null and b/login/bg/e3f.jpg differ diff --git a/login/bg/h5s.jpg b/login/bg/h5s.jpg new file mode 100644 index 0000000..42d44ab Binary files /dev/null and b/login/bg/h5s.jpg differ diff --git a/login/bg/i5e.jpg b/login/bg/i5e.jpg new file mode 100644 index 0000000..aaf8d51 Binary files /dev/null and b/login/bg/i5e.jpg differ diff --git a/login/bg/o3a.jpg b/login/bg/o3a.jpg new file mode 100644 index 0000000..7819715 Binary files /dev/null and b/login/bg/o3a.jpg differ diff --git a/login/bg/t65.jpg b/login/bg/t65.jpg new file mode 100644 index 0000000..729bbb1 Binary files /dev/null and b/login/bg/t65.jpg differ diff --git a/login/bg/u6r.jpg b/login/bg/u6r.jpg new file mode 100644 index 0000000..afe7952 Binary files /dev/null and b/login/bg/u6r.jpg differ diff --git a/login/bg/u9w.jpg b/login/bg/u9w.jpg new file mode 100644 index 0000000..9115491 Binary files /dev/null and b/login/bg/u9w.jpg differ diff --git a/login/index.php b/login/index.php index 37aceb0..6a21786 100644 --- a/login/index.php +++ b/login/index.php @@ -43,6 +43,8 @@ if (isset($_POST['user']) || isset($_GET['instance'])){ } $bg = scandir("./bg/"); +$bgfile = $bg[mt_rand(2,count($bg)-1)]; +@$exif = exif_read_data("./bg/".$bgfile, 'COMMENT')['COMMENT'][0]; ?> @@ -62,17 +64,31 @@ $bg = scandir("./bg/"); } html { - background: url(bg/) no-repeat center center fixed; + background: url(bg/) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } + + .bginfo { + text-align:left; + color:white; + font-family:sans-serif; + font-size:10px; + } + + .bginfo a { + color:white; + font-weight:bold; + }
      -
      +
      + +
      Dashboard FE diff --git a/modules/search.php b/modules/search.php new file mode 100644 index 0000000..2c08267 --- /dev/null +++ b/modules/search.php @@ -0,0 +1,9 @@ +
      +
      +
      +
      + + +
      +
      +
      diff --git a/modules/settings.php b/modules/settings.php index 540babd..a828bd7 100644 --- a/modules/settings.php +++ b/modules/settings.php @@ -67,6 +67,7 @@

      Theme.

      @@ -9,7 +9,7 @@
      - +
      diff --git a/themes/chicago/templates/textpost.txt b/templates/textpost.txt similarity index 91% rename from themes/chicago/templates/textpost.txt rename to templates/textpost.txt index bf04ad8..a41ff26 100644 --- a/themes/chicago/templates/textpost.txt +++ b/templates/textpost.txt @@ -7,7 +7,7 @@ :name: :rt: - +
      diff --git a/themes/1994/css/color.css b/themes/1994/css/color.css index e3974c9..f59e8cc 100644 --- a/themes/1994/css/color.css +++ b/themes/1994/css/color.css @@ -34,6 +34,8 @@ textarea,input[type="text"],.notifpic{ border-right:2px solid #ffffff !important; border-top:2px solid #828282 !important; border-left:2px solid #828282 !important; + color:#692b84; + text-shadow: 1px 1px white; } textarea{ @@ -274,7 +276,7 @@ input[type="checkbox"]:checked+label { border-right:2px solid #828282; } -.postform { +.postform,.searchmobile { background-color: #efd7f3; border-top:2px solid #ffffff; border-left:2px solid #ffffff; diff --git a/themes/1994/css/mobile.css b/themes/1994/css/mobile.css index 5c15512..0059511 100644 --- a/themes/1994/css/mobile.css +++ b/themes/1994/css/mobile.css @@ -392,8 +392,7 @@ aside { border-radius: 3px; } -.postform { - display:none; +.postform,.searchmobile { position:fixed; width: 100vw !important; left:0px; @@ -403,7 +402,7 @@ aside { z-index: 99; } -#postform { +#postform,#searchmobile { display:none; } diff --git a/themes/1994/css/style.css b/themes/1994/css/style.css index 536979d..b7f0648 100644 --- a/themes/1994/css/style.css +++ b/themes/1994/css/style.css @@ -383,6 +383,10 @@ aside { border-radius: 3px; } +#searchmobile{ + display:none; +} + .postform { width:650px; float: left; diff --git a/themes/1994/templates/textpost.txt b/themes/1994/templates/textpost.txt deleted file mode 100644 index bf04ad8..0000000 --- a/themes/1994/templates/textpost.txt +++ /dev/null @@ -1,23 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - - - :name: :rt: - - - - -
      -
      -
      :spoiler: :replyto: :text:
      -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      - diff --git a/themes/amplifier/css/color.css b/themes/amplifier/css/color.css index e02a8d9..3518eed 100644 --- a/themes/amplifier/css/color.css +++ b/themes/amplifier/css/color.css @@ -117,7 +117,7 @@ input[type="checkbox"]:checked+label { color: black !important; } -.uploadBox { +.uploadBox,.picker { box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1); } @@ -248,7 +248,8 @@ input[type="checkbox"]:checked+label { .post, .rb, .textonly, -.loadmore { +.loadmore, +.searchmobile { background-color: #383858; border-top:2px solid #6a6a82; border-left:2px solid #6a6a82; @@ -305,6 +306,19 @@ input[type="checkbox"]:checked+label { background-color:black; } +.polloption { + display:block; + box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.5), 0 1px rgba(255, 255, 255, 0.1); + border-bottom:2px solid #6a6a82; + border-right:2px solid #6a6a82; + border-top:2px solid #26263c; + border-left:2px solid #26263c; + background-color: #04e703; + color:black !important; + margin-bottom:2px; + padding:5px; +} + .post_footer .post_buttons a, .post_footer span{ color: #04e703; } diff --git a/themes/amplifier/css/mobile.css b/themes/amplifier/css/mobile.css deleted file mode 100644 index 356856a..0000000 --- a/themes/amplifier/css/mobile.css +++ /dev/null @@ -1,656 +0,0 @@ -/* overall */ - -* { - font-family: arial, helvetica, sans-serif; - font-size: 12pt; -} - -a { - text-decoration:none; -} - -h1 { - font-size:20px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; - } - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.desktop{ - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100vw; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100vw; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - width: 100% !important; - display: inline-block; - text-align: center; -} - -#posts { - width: 100% !important; -} - -.content { - width: 100%; - display: inline-block; - margin:0px !important; - text-align: left; - word-break: break-all; -} - -aside { - display:none !important; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; - z-index:50; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - left: 0px; - bottom: 0px; - width: 100vw; - height: auto; - z-index: 99; -} - -/* topbar elements */ - -.mid { - display:none; -} - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: fixed; - left: 0px; - top: 45px; - width: 100vw; - max-height: 400px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:100%; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - display:none; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; - color: lightgray; -} - -.side_element a { - color: lightgray; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 90% !important; - clear: both; - display: inline-block; - margin-top: 3px; -} - -.profile { - float:left; - background-color:white; - border-radius:5px; - //width:650px; - width:100%; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu,.listmenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - display:none; - width: 50px; - background-size: cover; - height: 50px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.loader, -.loadmore, -.rb, -.textonly, -.profile { - width: 100% !important; - float: left; - text-align: center; - position: relative; - border-radius: 3px; -} - -.postform { - display:none; - position:fixed; - width: 100vw !important; - left:0px; - top:45px; - text-align: center; - border-radius: 3px; - z-index: 99; -} - -#postform { - display:none; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.postHeader *,.post_footer *{ - font-size:small; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:-198px; - width: 300px; - height: 200px; - border-radius:3px; -} - -.userinfo_co { - width: 280px; - margin: 10px; -} - -.userinfo_he { - width: 300px; - height: 100px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 48% !important; - height: 321px; - line-height: 321px; - background-color: black; - float:left; - margin:2px !important; -} - -.smaller { - width: 31% !important; - height: 212px; - line-height: 212px; - background-color: black; - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; - border-radius: 3px; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -/* -.lightbox-opened { - //background-color: #333; - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - left: 0; - overflow-y: scroll; - padding: 24px; - position: fixed; - text-align: center; - top: 0; - width: 100%; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -*/ -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello, sans-serif; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/amplifier/css/style.css b/themes/amplifier/css/style.css deleted file mode 100644 index 838300f..0000000 --- a/themes/amplifier/css/style.css +++ /dev/null @@ -1,631 +0,0 @@ -/* overall */ -html { - scroll-behavior: smooth; -} - -* { - font-family: arial, helvetica, sans-serif; - font-size: 11pt; -} - -a { - text-decoration: none; -} - -h1 { - font-size:30px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; -} - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.mobile { - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100%; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100%; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - display: inline-block; - text-align: center; -} - -#posts { - width: 800px; - float: left; -} - -aside { - margin-top: 5px; - width: 280px; - float: left; - display: inline-block; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - right: 10px; - bottom: 115px; - width: 350px; - height: auto; -} - -/* topbar elements */ - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.ntbutton { - position:relative; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: absolute; - right: -20px; - top: 45px; - width: 350px; - max-height: 500px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:330px; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - border-radius: 3px; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; -} - -.side_element li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; - float:left; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 800px; - clear: both; - display: inline-block; - margin-top: 5px; -} - -.profile,.loader { - float:left; - border-radius:5px; - width:650px; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - width: 80px; - background-size: 80px; - height: 80px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.rb, -.textonly, -.loadmore { - width: 650px; - float: left; - text-align: center; - position: relative; - border-radius: 3px; -} - -.postform { - width:650px; - float: left; - text-align: center; - position: relative; - border-radius: 3px; - display:block !important; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:15px; - width: 300px; - height: auto; - border-radius:3px; - line-height:initial; - z-index:99; -} - -.userinfo_upper{ - top:-100px; -} - -.userinfo_co { - width: 280px; - margin: 10px; - text-align: center; - position:relative; -} - -.userinfo_he { - width: 300px; - height: 150px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 321px !important; - height: 321px; - line-height: 321px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.smaller { - width: 212px !important; - height: 212px; - line-height: 212px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.content { - width: 600px; - display: inline-block; - margin:0px !important; - text-align: left; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; - border-radius: 3px; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} - -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/amplifier/templates/post.txt b/themes/amplifier/templates/post.txt deleted file mode 100644 index cdfada2..0000000 --- a/themes/amplifier/templates/post.txt +++ /dev/null @@ -1,21 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - :name: :rt: - - - -
      - :spoiler: -
      :media:
      -
      - :replyto: :text: -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      diff --git a/themes/amplifier/templates/profileheader.txt b/themes/amplifier/templates/profileheader.txt deleted file mode 100644 index df110e5..0000000 --- a/themes/amplifier/templates/profileheader.txt +++ /dev/null @@ -1,26 +0,0 @@ - -
      -
      -
      -
      - - :top: - - - :bottom: - -
      -
      -
      -
      :name: -
      @:acct: -
      :note: -
      - -
      -
      \ No newline at end of file diff --git a/themes/amplifier/templates/reblog.txt b/themes/amplifier/templates/reblog.txt deleted file mode 100644 index f6bc837..0000000 --- a/themes/amplifier/templates/reblog.txt +++ /dev/null @@ -1,16 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      :name:
      -
      :media:
      -
      - :spoiler: - :text: -
      - -
      :form::descendants:
      -
      - - :notes: -
      \ No newline at end of file diff --git a/themes/amplifier/templates/reply.txt b/themes/amplifier/templates/reply.txt deleted file mode 100644 index 4deda20..0000000 --- a/themes/amplifier/templates/reply.txt +++ /dev/null @@ -1,25 +0,0 @@ -
      -
      - - - - :name: - - (:acct:) - - -  - - - -
      -
      -
      :media: :replyto: :text:
      -
      - - :date: - :buttons: - -
      - -
      \ No newline at end of file diff --git a/themes/amplifier/templates/replyform.txt b/themes/amplifier/templates/replyform.txt deleted file mode 100644 index 32216a5..0000000 --- a/themes/amplifier/templates/replyform.txt +++ /dev/null @@ -1,45 +0,0 @@ -
      -
      -
      -
      - -
      -
      - -
      - -
      - -
      - - -
      -  - -
      -
      - - -
      -
      - 😜 -
      -
      - - - - - - -
      -
      -
      -
      -
      -
      - diff --git a/themes/amplifier/templates/textpost.txt b/themes/amplifier/templates/textpost.txt deleted file mode 100644 index bf04ad8..0000000 --- a/themes/amplifier/templates/textpost.txt +++ /dev/null @@ -1,23 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - - - :name: :rt: - - - - -
      -
      -
      :spoiler: :replyto: :text:
      -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      - diff --git a/themes/ancientbird/css/color.css b/themes/ancientbird/css/color.css index 73f7515..79639b6 100644 --- a/themes/ancientbird/css/color.css +++ b/themes/ancientbird/css/color.css @@ -204,7 +204,7 @@ input[type="checkbox"]:checked+label { border: 1px solid #8fa9b8; } -.postform { +.postform,.searchmobile { background-color: white; border: 1px solid #8fa9b8 } diff --git a/themes/ancientbird/css/mobile.css b/themes/ancientbird/css/mobile.css index 04bce36..a7ac0da 100644 --- a/themes/ancientbird/css/mobile.css +++ b/themes/ancientbird/css/mobile.css @@ -394,8 +394,7 @@ aside { border-radius: 3px; } -.postform { - display:none; +.postform,.searchmobile { position:fixed; width: 100vw !important; left:0px; @@ -405,7 +404,7 @@ aside { z-index: 99; } -#postform { +#postform,#searchmobile { display:none; } diff --git a/themes/ancientbird/css/style.css b/themes/ancientbird/css/style.css index ad26eac..4384865 100644 --- a/themes/ancientbird/css/style.css +++ b/themes/ancientbird/css/style.css @@ -383,6 +383,10 @@ aside { border-radius: 3px; } +#searchmobile { + display:none; +} + .postform { width:650px; float: left; diff --git a/themes/ancientbird/templates/post.txt b/themes/ancientbird/templates/post.txt deleted file mode 100644 index aeb54af..0000000 --- a/themes/ancientbird/templates/post.txt +++ /dev/null @@ -1,21 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - :name: :rt: - -
      :menu:
      -
      -
      - :spoiler: -
      :media:
      -
      - :replyto: :text: -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      diff --git a/themes/ancientbird/templates/profileheader.txt b/themes/ancientbird/templates/profileheader.txt deleted file mode 100644 index df110e5..0000000 --- a/themes/ancientbird/templates/profileheader.txt +++ /dev/null @@ -1,26 +0,0 @@ - -
      -
      -
      -
      - - :top: - - - :bottom: - -
      -
      -
      -
      :name: -
      @:acct: -
      :note: -
      - -
      -
      \ No newline at end of file diff --git a/themes/ancientbird/templates/reblog.txt b/themes/ancientbird/templates/reblog.txt deleted file mode 100644 index f6bc837..0000000 --- a/themes/ancientbird/templates/reblog.txt +++ /dev/null @@ -1,16 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      :name:
      -
      :media:
      -
      - :spoiler: - :text: -
      - -
      :form::descendants:
      -
      - - :notes: -
      \ No newline at end of file diff --git a/themes/ancientbird/templates/reply.txt b/themes/ancientbird/templates/reply.txt deleted file mode 100644 index 664361f..0000000 --- a/themes/ancientbird/templates/reply.txt +++ /dev/null @@ -1,25 +0,0 @@ -
      -
      - - - - :name: - - (:acct:) - - -  -
      :menu:
      -
      -
      -
      -
      -
      :media: :replyto: :text:
      -
      - - :date: - :buttons: - -
      - -
      \ No newline at end of file diff --git a/themes/ancientbird/templates/replyform.txt b/themes/ancientbird/templates/replyform.txt deleted file mode 100644 index 32216a5..0000000 --- a/themes/ancientbird/templates/replyform.txt +++ /dev/null @@ -1,45 +0,0 @@ -
      -
      -
      -
      - -
      -
      - -
      - -
      - -
      - - -
      -  - -
      -
      - - -
      -
      - 😜 -
      -
      - - - - - - -
      -
      -
      -
      -
      -
      - diff --git a/themes/ancientbird/templates/textpost.txt b/themes/ancientbird/templates/textpost.txt deleted file mode 100644 index 7a0bad1..0000000 --- a/themes/ancientbird/templates/textpost.txt +++ /dev/null @@ -1,23 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - - - :name: :rt: - - -
      :menu:
      -
      -
      -
      -
      :spoiler: :replyto: :text:
      -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      - diff --git a/themes/bythebook/css/color.css b/themes/bythebook/css/color.css index 6981ae6..5e50457 100644 --- a/themes/bythebook/css/color.css +++ b/themes/bythebook/css/color.css @@ -198,14 +198,12 @@ input[type="checkbox"]:checked+label { .post, .rb, .textonly, -.loadmore { - background-color: white; - border:2px solid #cdcfd1; -} - -.postform { +.loadmore, +.postform, +.searchmobile { background-color: white; border:2px solid #cdcfd1; + border-radius:10px; } .previewpost { diff --git a/themes/bythebook/css/mobile.css b/themes/bythebook/css/mobile.css deleted file mode 100644 index d83e5cf..0000000 --- a/themes/bythebook/css/mobile.css +++ /dev/null @@ -1,656 +0,0 @@ -/* overall */ - -* { - font-family: arial, helvetica, sans-serif; - font-size: 12pt; -} - -a { - text-decoration:none; -} - -h1 { - font-size:20px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; - } - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.desktop{ - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100vw; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100vw; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - width: 100% !important; - display: inline-block; - text-align: center; -} - -#posts { - width: 100% !important; -} - -.content { - width: 100%; - display: inline-block; - margin:0px !important; - text-align: left; - word-break: break-all; -} - -aside { - display:none !important; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; - z-index:50; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - left: 0px; - bottom: 0px; - width: 100vw; - height: auto; - z-index: 99; -} - -/* topbar elements */ - -.mid { - display:none; -} - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: fixed; - left: 0px; - top: 45px; - width: 100vw; - max-height: 400px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:100%; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - display:none; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; - color: lightgray; -} - -.side_element a { - color: lightgray; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 90% !important; - clear: both; - display: inline-block; - margin-top: 3px; -} - -.profile { - float:left; - background-color:white; - border-radius:5px; - //width:650px; - width:100%; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu,.listmenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - display:none; - width: 50px; - background-size: cover; - height: 50px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.loader, -.loadmore, -.rb, -.textonly, -.profile { - width: 100% !important; - float: left; - text-align: center; - position: relative; - border-radius: 10px; -} - -.postform { - display:none; - position:fixed; - width: 100vw !important; - left:0px; - top:45px; - text-align: center; - border-radius: 3px; - z-index: 99; -} - -#postform { - display:none; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.postHeader *,.post_footer *{ - font-size:small; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:-198px; - width: 300px; - height: 200px; - border-radius:3px; -} - -.userinfo_co { - width: 280px; - margin: 10px; -} - -.userinfo_he { - width: 300px; - height: 100px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 48% !important; - height: 321px; - line-height: 321px; - background-color: black; - float:left; - margin:2px !important; -} - -.smaller { - width: 31% !important; - height: 212px; - line-height: 212px; - background-color: black; - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; - border-radius: 10px; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -/* -.lightbox-opened { - //background-color: #333; - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - left: 0; - overflow-y: scroll; - padding: 24px; - position: fixed; - text-align: center; - top: 0; - width: 100%; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -*/ -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello, sans-serif; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/bythebook/css/style.css b/themes/bythebook/css/style.css deleted file mode 100644 index 08f74f1..0000000 --- a/themes/bythebook/css/style.css +++ /dev/null @@ -1,631 +0,0 @@ -/* overall */ -html { - scroll-behavior: smooth; -} - -* { - font-family: arial, helvetica, sans-serif; - font-size: 11pt; -} - -a { - text-decoration: none; -} - -h1 { - font-size:30px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; -} - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.mobile { - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100%; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100%; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - display: inline-block; - text-align: center; -} - -#posts { - width: 800px; - float: left; -} - -aside { - margin-top: 5px; - width: 280px; - float: left; - display: inline-block; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - right: 10px; - bottom: 115px; - width: 350px; - height: auto; -} - -/* topbar elements */ - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.ntbutton { - position:relative; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: absolute; - right: -20px; - top: 45px; - width: 350px; - max-height: 500px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:330px; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - border-radius: 10px; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; -} - -.side_element li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; - float:left; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 800px; - clear: both; - display: inline-block; - margin-top: 5px; -} - -.profile,.loader { - float:left; - border-radius:5px; - width:650px; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - width: 80px; - background-size: 80px; - height: 80px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.rb, -.textonly, -.loadmore { - width: 650px; - float: left; - text-align: center; - position: relative; - border-radius: 10px; -} - -.postform { - width:650px; - float: left; - text-align: center; - position: relative; - border-radius: 10px; - display:block !important; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:15px; - width: 300px; - height: auto; - border-radius:3px; - line-height:initial; - z-index:99; -} - -.userinfo_upper{ - top:-100px; -} - -.userinfo_co { - width: 280px; - margin: 10px; - text-align: center; - position:relative; -} - -.userinfo_he { - width: 300px; - height: 150px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 321px !important; - height: 321px; - line-height: 321px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.smaller { - width: 212px !important; - height: 212px; - line-height: 212px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.content { - width: 600px; - display: inline-block; - margin:0px !important; - text-align: left; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; - border-radius: 10px; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} - -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/bythebook/templates/post.txt b/themes/bythebook/templates/post.txt deleted file mode 100644 index aeb54af..0000000 --- a/themes/bythebook/templates/post.txt +++ /dev/null @@ -1,21 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - :name: :rt: - -
      :menu:
      -
      -
      - :spoiler: -
      :media:
      -
      - :replyto: :text: -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      diff --git a/themes/bythebook/templates/profileheader.txt b/themes/bythebook/templates/profileheader.txt deleted file mode 100644 index df110e5..0000000 --- a/themes/bythebook/templates/profileheader.txt +++ /dev/null @@ -1,26 +0,0 @@ - -
      -
      -
      -
      - - :top: - - - :bottom: - -
      -
      -
      -
      :name: -
      @:acct: -
      :note: -
      - -
      -
      \ No newline at end of file diff --git a/themes/bythebook/templates/reblog.txt b/themes/bythebook/templates/reblog.txt deleted file mode 100644 index f6bc837..0000000 --- a/themes/bythebook/templates/reblog.txt +++ /dev/null @@ -1,16 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      :name:
      -
      :media:
      -
      - :spoiler: - :text: -
      - -
      :form::descendants:
      -
      - - :notes: -
      \ No newline at end of file diff --git a/themes/bythebook/templates/reply.txt b/themes/bythebook/templates/reply.txt deleted file mode 100644 index 664361f..0000000 --- a/themes/bythebook/templates/reply.txt +++ /dev/null @@ -1,25 +0,0 @@ -
      -
      - - - - :name: - - (:acct:) - - -  -
      :menu:
      -
      -
      -
      -
      -
      :media: :replyto: :text:
      -
      - - :date: - :buttons: - -
      - -
      \ No newline at end of file diff --git a/themes/bythebook/templates/replyform.txt b/themes/bythebook/templates/replyform.txt deleted file mode 100644 index 32216a5..0000000 --- a/themes/bythebook/templates/replyform.txt +++ /dev/null @@ -1,45 +0,0 @@ -
      -
      -
      -
      - -
      -
      - -
      - -
      - -
      - - -
      -  - -
      -
      - - -
      -
      - 😜 -
      -
      - - - - - - -
      -
      -
      -
      -
      -
      - diff --git a/themes/bythebook/templates/textpost.txt b/themes/bythebook/templates/textpost.txt deleted file mode 100644 index 7a0bad1..0000000 --- a/themes/bythebook/templates/textpost.txt +++ /dev/null @@ -1,23 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - - - :name: :rt: - - -
      :menu:
      -
      -
      -
      -
      :spoiler: :replyto: :text:
      -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      - diff --git a/themes/chicago/css/color.css b/themes/chicago/css/color.css index f8a4947..36d3fc4 100644 --- a/themes/chicago/css/color.css +++ b/themes/chicago/css/color.css @@ -246,15 +246,9 @@ input[type="checkbox"]:checked+label { .post, .rb, .textonly, -.loadmore { - background-color: #c3c3c3; - border-top:2px solid #ffffff; - border-left:2px solid #ffffff; - border-bottom:2px solid #828282; - border-right:2px solid #828282; -} - -.postform { +.loadmore, +.postform, +.searchmobile { background-color: #c3c3c3; border-top:2px solid #ffffff; border-left:2px solid #ffffff; diff --git a/themes/chicago/css/mobile.css b/themes/chicago/css/mobile.css deleted file mode 100644 index 356856a..0000000 --- a/themes/chicago/css/mobile.css +++ /dev/null @@ -1,656 +0,0 @@ -/* overall */ - -* { - font-family: arial, helvetica, sans-serif; - font-size: 12pt; -} - -a { - text-decoration:none; -} - -h1 { - font-size:20px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; - } - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.desktop{ - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100vw; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100vw; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - width: 100% !important; - display: inline-block; - text-align: center; -} - -#posts { - width: 100% !important; -} - -.content { - width: 100%; - display: inline-block; - margin:0px !important; - text-align: left; - word-break: break-all; -} - -aside { - display:none !important; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; - z-index:50; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - left: 0px; - bottom: 0px; - width: 100vw; - height: auto; - z-index: 99; -} - -/* topbar elements */ - -.mid { - display:none; -} - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: fixed; - left: 0px; - top: 45px; - width: 100vw; - max-height: 400px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:100%; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - display:none; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; - color: lightgray; -} - -.side_element a { - color: lightgray; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 90% !important; - clear: both; - display: inline-block; - margin-top: 3px; -} - -.profile { - float:left; - background-color:white; - border-radius:5px; - //width:650px; - width:100%; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu,.listmenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - display:none; - width: 50px; - background-size: cover; - height: 50px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.loader, -.loadmore, -.rb, -.textonly, -.profile { - width: 100% !important; - float: left; - text-align: center; - position: relative; - border-radius: 3px; -} - -.postform { - display:none; - position:fixed; - width: 100vw !important; - left:0px; - top:45px; - text-align: center; - border-radius: 3px; - z-index: 99; -} - -#postform { - display:none; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.postHeader *,.post_footer *{ - font-size:small; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:-198px; - width: 300px; - height: 200px; - border-radius:3px; -} - -.userinfo_co { - width: 280px; - margin: 10px; -} - -.userinfo_he { - width: 300px; - height: 100px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 48% !important; - height: 321px; - line-height: 321px; - background-color: black; - float:left; - margin:2px !important; -} - -.smaller { - width: 31% !important; - height: 212px; - line-height: 212px; - background-color: black; - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; - border-radius: 3px; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -/* -.lightbox-opened { - //background-color: #333; - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - left: 0; - overflow-y: scroll; - padding: 24px; - position: fixed; - text-align: center; - top: 0; - width: 100%; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -*/ -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello, sans-serif; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/chicago/css/style.css b/themes/chicago/css/style.css deleted file mode 100644 index 838300f..0000000 --- a/themes/chicago/css/style.css +++ /dev/null @@ -1,631 +0,0 @@ -/* overall */ -html { - scroll-behavior: smooth; -} - -* { - font-family: arial, helvetica, sans-serif; - font-size: 11pt; -} - -a { - text-decoration: none; -} - -h1 { - font-size:30px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; -} - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.mobile { - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100%; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100%; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - display: inline-block; - text-align: center; -} - -#posts { - width: 800px; - float: left; -} - -aside { - margin-top: 5px; - width: 280px; - float: left; - display: inline-block; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - right: 10px; - bottom: 115px; - width: 350px; - height: auto; -} - -/* topbar elements */ - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.ntbutton { - position:relative; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: absolute; - right: -20px; - top: 45px; - width: 350px; - max-height: 500px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:330px; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - border-radius: 3px; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; -} - -.side_element li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; - float:left; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 800px; - clear: both; - display: inline-block; - margin-top: 5px; -} - -.profile,.loader { - float:left; - border-radius:5px; - width:650px; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - width: 80px; - background-size: 80px; - height: 80px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.rb, -.textonly, -.loadmore { - width: 650px; - float: left; - text-align: center; - position: relative; - border-radius: 3px; -} - -.postform { - width:650px; - float: left; - text-align: center; - position: relative; - border-radius: 3px; - display:block !important; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:15px; - width: 300px; - height: auto; - border-radius:3px; - line-height:initial; - z-index:99; -} - -.userinfo_upper{ - top:-100px; -} - -.userinfo_co { - width: 280px; - margin: 10px; - text-align: center; - position:relative; -} - -.userinfo_he { - width: 300px; - height: 150px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 321px !important; - height: 321px; - line-height: 321px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.smaller { - width: 212px !important; - height: 212px; - line-height: 212px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.content { - width: 600px; - display: inline-block; - margin:0px !important; - text-align: left; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; - border-radius: 3px; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} - -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/chicago/templates/post.txt b/themes/chicago/templates/post.txt deleted file mode 100644 index cdfada2..0000000 --- a/themes/chicago/templates/post.txt +++ /dev/null @@ -1,21 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - :name: :rt: - - - -
      - :spoiler: -
      :media:
      -
      - :replyto: :text: -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      diff --git a/themes/chicago/templates/profileheader.txt b/themes/chicago/templates/profileheader.txt deleted file mode 100644 index df110e5..0000000 --- a/themes/chicago/templates/profileheader.txt +++ /dev/null @@ -1,26 +0,0 @@ - -
      -
      -
      -
      - - :top: - - - :bottom: - -
      -
      -
      -
      :name: -
      @:acct: -
      :note: -
      - -
      -
      \ No newline at end of file diff --git a/themes/chicago/templates/reblog.txt b/themes/chicago/templates/reblog.txt deleted file mode 100644 index f6bc837..0000000 --- a/themes/chicago/templates/reblog.txt +++ /dev/null @@ -1,16 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      :name:
      -
      :media:
      -
      - :spoiler: - :text: -
      - -
      :form::descendants:
      -
      - - :notes: -
      \ No newline at end of file diff --git a/themes/chicago/templates/reply.txt b/themes/chicago/templates/reply.txt deleted file mode 100644 index 4deda20..0000000 --- a/themes/chicago/templates/reply.txt +++ /dev/null @@ -1,25 +0,0 @@ -
      -
      - - - - :name: - - (:acct:) - - -  - - - -
      -
      -
      :media: :replyto: :text:
      -
      - - :date: - :buttons: - -
      - -
      \ No newline at end of file diff --git a/themes/chicago/templates/replyform.txt b/themes/chicago/templates/replyform.txt deleted file mode 100644 index 32216a5..0000000 --- a/themes/chicago/templates/replyform.txt +++ /dev/null @@ -1,45 +0,0 @@ -
      -
      -
      -
      - -
      -
      - -
      - -
      - -
      - - -
      -  - -
      -
      - - -
      -
      - 😜 -
      -
      - - - - - - -
      -
      -
      -
      -
      -
      - diff --git a/themes/cuatro/css/color.css b/themes/cuatro/css/color.css index 64ceaea..1b460a0 100644 --- a/themes/cuatro/css/color.css +++ b/themes/cuatro/css/color.css @@ -198,7 +198,7 @@ input[type="checkbox"]:checked+label { border:1px solid #800000; } -.postform { +.postform,.searchmobile { background-color: #eeaa88; border:1px solid #eeaa88; } diff --git a/themes/cuatro/css/mobile.css b/themes/cuatro/css/mobile.css deleted file mode 100644 index 356856a..0000000 --- a/themes/cuatro/css/mobile.css +++ /dev/null @@ -1,656 +0,0 @@ -/* overall */ - -* { - font-family: arial, helvetica, sans-serif; - font-size: 12pt; -} - -a { - text-decoration:none; -} - -h1 { - font-size:20px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; - } - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.desktop{ - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100vw; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100vw; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - width: 100% !important; - display: inline-block; - text-align: center; -} - -#posts { - width: 100% !important; -} - -.content { - width: 100%; - display: inline-block; - margin:0px !important; - text-align: left; - word-break: break-all; -} - -aside { - display:none !important; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; - z-index:50; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - left: 0px; - bottom: 0px; - width: 100vw; - height: auto; - z-index: 99; -} - -/* topbar elements */ - -.mid { - display:none; -} - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: fixed; - left: 0px; - top: 45px; - width: 100vw; - max-height: 400px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:100%; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - display:none; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; - color: lightgray; -} - -.side_element a { - color: lightgray; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 90% !important; - clear: both; - display: inline-block; - margin-top: 3px; -} - -.profile { - float:left; - background-color:white; - border-radius:5px; - //width:650px; - width:100%; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu,.listmenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - display:none; - width: 50px; - background-size: cover; - height: 50px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.loader, -.loadmore, -.rb, -.textonly, -.profile { - width: 100% !important; - float: left; - text-align: center; - position: relative; - border-radius: 3px; -} - -.postform { - display:none; - position:fixed; - width: 100vw !important; - left:0px; - top:45px; - text-align: center; - border-radius: 3px; - z-index: 99; -} - -#postform { - display:none; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.postHeader *,.post_footer *{ - font-size:small; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:-198px; - width: 300px; - height: 200px; - border-radius:3px; -} - -.userinfo_co { - width: 280px; - margin: 10px; -} - -.userinfo_he { - width: 300px; - height: 100px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 48% !important; - height: 321px; - line-height: 321px; - background-color: black; - float:left; - margin:2px !important; -} - -.smaller { - width: 31% !important; - height: 212px; - line-height: 212px; - background-color: black; - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; - border-radius: 3px; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -/* -.lightbox-opened { - //background-color: #333; - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - left: 0; - overflow-y: scroll; - padding: 24px; - position: fixed; - text-align: center; - top: 0; - width: 100%; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -*/ -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello, sans-serif; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/cuatro/css/style.css b/themes/cuatro/css/style.css deleted file mode 100644 index 838300f..0000000 --- a/themes/cuatro/css/style.css +++ /dev/null @@ -1,631 +0,0 @@ -/* overall */ -html { - scroll-behavior: smooth; -} - -* { - font-family: arial, helvetica, sans-serif; - font-size: 11pt; -} - -a { - text-decoration: none; -} - -h1 { - font-size:30px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; -} - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.mobile { - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100%; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100%; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - display: inline-block; - text-align: center; -} - -#posts { - width: 800px; - float: left; -} - -aside { - margin-top: 5px; - width: 280px; - float: left; - display: inline-block; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - right: 10px; - bottom: 115px; - width: 350px; - height: auto; -} - -/* topbar elements */ - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.ntbutton { - position:relative; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: absolute; - right: -20px; - top: 45px; - width: 350px; - max-height: 500px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:330px; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - border-radius: 3px; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; -} - -.side_element li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; - float:left; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 800px; - clear: both; - display: inline-block; - margin-top: 5px; -} - -.profile,.loader { - float:left; - border-radius:5px; - width:650px; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - width: 80px; - background-size: 80px; - height: 80px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.rb, -.textonly, -.loadmore { - width: 650px; - float: left; - text-align: center; - position: relative; - border-radius: 3px; -} - -.postform { - width:650px; - float: left; - text-align: center; - position: relative; - border-radius: 3px; - display:block !important; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:15px; - width: 300px; - height: auto; - border-radius:3px; - line-height:initial; - z-index:99; -} - -.userinfo_upper{ - top:-100px; -} - -.userinfo_co { - width: 280px; - margin: 10px; - text-align: center; - position:relative; -} - -.userinfo_he { - width: 300px; - height: 150px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 321px !important; - height: 321px; - line-height: 321px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.smaller { - width: 212px !important; - height: 212px; - line-height: 212px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.content { - width: 600px; - display: inline-block; - margin:0px !important; - text-align: left; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; - border-radius: 3px; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} - -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/cuatro/templates/post.txt b/themes/cuatro/templates/post.txt deleted file mode 100644 index 7b61cd9..0000000 --- a/themes/cuatro/templates/post.txt +++ /dev/null @@ -1,21 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - :name: :rt: - - - -
      - :spoiler: -
      :media:
      -
      - :replyto: :text: -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      diff --git a/themes/cuatro/templates/profileheader.txt b/themes/cuatro/templates/profileheader.txt deleted file mode 100644 index df110e5..0000000 --- a/themes/cuatro/templates/profileheader.txt +++ /dev/null @@ -1,26 +0,0 @@ - -
      -
      -
      -
      - - :top: - - - :bottom: - -
      -
      -
      -
      :name: -
      @:acct: -
      :note: -
      - -
      -
      \ No newline at end of file diff --git a/themes/cuatro/templates/reblog.txt b/themes/cuatro/templates/reblog.txt deleted file mode 100644 index f6bc837..0000000 --- a/themes/cuatro/templates/reblog.txt +++ /dev/null @@ -1,16 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      :name:
      -
      :media:
      -
      - :spoiler: - :text: -
      - -
      :form::descendants:
      -
      - - :notes: -
      \ No newline at end of file diff --git a/themes/cuatro/templates/reply.txt b/themes/cuatro/templates/reply.txt deleted file mode 100644 index 664361f..0000000 --- a/themes/cuatro/templates/reply.txt +++ /dev/null @@ -1,25 +0,0 @@ -
      -
      - - - - :name: - - (:acct:) - - -  -
      :menu:
      -
      -
      -
      -
      -
      :media: :replyto: :text:
      -
      - - :date: - :buttons: - -
      - -
      \ No newline at end of file diff --git a/themes/cuatro/templates/replyform.txt b/themes/cuatro/templates/replyform.txt deleted file mode 100644 index 32216a5..0000000 --- a/themes/cuatro/templates/replyform.txt +++ /dev/null @@ -1,45 +0,0 @@ -
      -
      -
      -
      - -
      -
      - -
      - -
      - -
      - - -
      -  - -
      -
      - - -
      -
      - 😜 -
      -
      - - - - - - -
      -
      -
      -
      -
      -
      - diff --git a/themes/cuatro/templates/textpost.txt b/themes/cuatro/templates/textpost.txt deleted file mode 100644 index 300551f..0000000 --- a/themes/cuatro/templates/textpost.txt +++ /dev/null @@ -1,23 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - - - :name: :rt: - - - - -
      -
      -
      :spoiler: :replyto: :text:
      -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      - diff --git a/themes/custom/css/color.php b/themes/custom/css/color.php index d7aafd8..b8ab531 100644 --- a/themes/custom/css/color.php +++ b/themes/custom/css/color.php @@ -241,7 +241,8 @@ input[type="checkbox"]:checked+label { .textonly, .loadmore, .postform, -.side_element +.side_element, +.searchmobile { border: px solid #; border-radius: px; diff --git a/themes/custom/css/mobile.css b/themes/custom/css/mobile.css deleted file mode 100644 index f2e5705..0000000 --- a/themes/custom/css/mobile.css +++ /dev/null @@ -1,657 +0,0 @@ -/* overall */ - -* { - font-family: arial, helvetica, sans-serif; - font-size: 12pt; -} - -a { - text-decoration:none; -} - -h1 { - font-size:20px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; - } - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.desktop{ - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100vw; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100vw; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - width: 100% !important; - display: inline-block; - text-align: center; -} - -#posts { - width: 100% !important; -} - -.content { - width: 100%; - display: inline-block; - margin:0px !important; - text-align: left; - word-break: break-all; -} - -aside { - display:none !important; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; - z-index:50; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - left: 0px; - bottom: 0px; - width: 100vw; - height: auto; - z-index: 99; -} - -/* topbar elements */ - -.mid { - display:none; -} - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: fixed; - left: 0px; - top: 45px; - width: 100vw; - max-height: 400px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:100%; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - display:none; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; - color: lightgray; -} - -.side_element a { - color: lightgray; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 90% !important; - clear: both; - display: inline-block; - margin-top: 3px; -} - -.profile { - float:left; - background-color:white; - border-radius:5px; - //width:650px; - width:100%; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu,.listmenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - display:none; - width: 50px; - background-size: cover; - height: 50px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.loader, -.loadmore, -.rb, -.textonly, -.profile { - width: 100% !important; - float: left; - text-align: center; - position: relative; - border-radius: 3px; -} - -.postform { - display:none; - position:fixed; - width: 100vw !important; - left:0px; - top:45px; - text-align: center; - border-radius: 3px; - z-index: 99; -} - -#postform { - display:none; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.postHeader *,.post_footer *{ - font-size:small; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:-198px; - width: 300px; - height: 200px; - border-radius:3px; -} - -.userinfo_co { - width: 280px; - margin: 10px; -} - -.userinfo_he { - width: 300px; - height: 100px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 48% !important; - height: 321px; - line-height: 321px; - background-color: black; - float:left; - margin:2px !important; -} - -.smaller { - width: 31% !important; - height: 212px; - line-height: 212px; - background-color: black; - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; - border-radius: 3px; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -/* -.lightbox-opened { - //background-color: #333; - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - left: 0; - overflow-y: scroll; - padding: 24px; - position: fixed; - text-align: center; - top: 0; - width: 100%; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -*/ -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello, sans-serif; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/custom/css/style.css b/themes/custom/css/style.css deleted file mode 100644 index ca624c8..0000000 --- a/themes/custom/css/style.css +++ /dev/null @@ -1,627 +0,0 @@ -/* overall */ -html { - scroll-behavior: smooth; -} - -* { - font-family: arial, helvetica, sans-serif; - font-size: 11pt; -} - -a { - text-decoration: none; -} - -h1 { - font-size:30px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; -} - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.mobile { - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100%; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100%; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - display: inline-block; - text-align: center; -} - -#posts { - width: 800px; - float: left; -} - -aside { - margin-top: 5px; - width: 280px; - float: left; - display: inline-block; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - right: 10px; - bottom: 115px; - width: 350px; - height: auto; -} - -/* topbar elements */ - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.ntbutton { - position:relative; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: absolute; - right: -20px; - top: 45px; - width: 350px; - max-height: 500px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:330px; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; -} - -.side_element li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; - float:left; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 800px; - clear: both; - display: inline-block; - margin-top: 5px; -} - -.profile,.loader { - float:left; - border-radius:5px; - width:650px; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - width: 80px; - background-size: 80px; - height: 80px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.rb, -.textonly, -.loadmore { - width: 650px; - float: left; - text-align: center; - position: relative; -} - -.postform { - width:650px; - float: left; - text-align: center; - position: relative; - display:block !important; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:15px; - width: 300px; - height: auto; - border-radius:3px; - line-height:initial; - z-index:99; -} - -.userinfo_upper{ - top:-100px; -} - -.userinfo_co { - width: 280px; - margin: 10px; - text-align: center; - position:relative; -} - -.userinfo_he { - width: 300px; - height: 150px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 321px !important; - height: 321px; - line-height: 321px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.smaller { - width: 212px !important; - height: 212px; - line-height: 212px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.content { - width: 600px; - display: inline-block; - margin:0px !important; - text-align: left; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} - -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/custom/templates/post.txt b/themes/custom/templates/post.txt deleted file mode 100644 index 21aff7b..0000000 --- a/themes/custom/templates/post.txt +++ /dev/null @@ -1,21 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - :name: :rt: - - - -
      - :spoiler: -
      :media:
      -
      - :replyto: :text: -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      diff --git a/themes/custom/templates/profileheader.txt b/themes/custom/templates/profileheader.txt deleted file mode 100644 index df110e5..0000000 --- a/themes/custom/templates/profileheader.txt +++ /dev/null @@ -1,26 +0,0 @@ - -
      -
      -
      -
      - - :top: - - - :bottom: - -
      -
      -
      -
      :name: -
      @:acct: -
      :note: -
      - -
      -
      \ No newline at end of file diff --git a/themes/custom/templates/reblog.txt b/themes/custom/templates/reblog.txt deleted file mode 100644 index f6bc837..0000000 --- a/themes/custom/templates/reblog.txt +++ /dev/null @@ -1,16 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      :name:
      -
      :media:
      -
      - :spoiler: - :text: -
      - -
      :form::descendants:
      -
      - - :notes: -
      \ No newline at end of file diff --git a/themes/custom/templates/reply.txt b/themes/custom/templates/reply.txt deleted file mode 100644 index d614aa1..0000000 --- a/themes/custom/templates/reply.txt +++ /dev/null @@ -1,25 +0,0 @@ -
      -
      - - - - :name: - - (:acct:) - - -  - - - -
      -
      -
      :media: :replyto: :text:
      -
      - - :date: - :buttons: - -
      - -
      \ No newline at end of file diff --git a/themes/custom/templates/replyform.txt b/themes/custom/templates/replyform.txt deleted file mode 100644 index 32216a5..0000000 --- a/themes/custom/templates/replyform.txt +++ /dev/null @@ -1,45 +0,0 @@ -
      -
      -
      -
      - -
      -
      - -
      - -
      - -
      - - -
      -  - -
      -
      - - -
      -
      - 😜 -
      -
      - - - - - - -
      -
      -
      -
      -
      -
      - diff --git a/themes/custom/templates/textpost.txt b/themes/custom/templates/textpost.txt deleted file mode 100644 index a57ae12..0000000 --- a/themes/custom/templates/textpost.txt +++ /dev/null @@ -1,23 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - - - :name: :rt: - - - - -
      -
      -
      :spoiler: :replyto: :text:
      -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      - diff --git a/themes/default/templates/post.txt b/themes/default/templates/post.txt deleted file mode 100644 index 7b61cd9..0000000 --- a/themes/default/templates/post.txt +++ /dev/null @@ -1,21 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - :name: :rt: - - - -
      - :spoiler: -
      :media:
      -
      - :replyto: :text: -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      diff --git a/themes/default/templates/profileheader.txt b/themes/default/templates/profileheader.txt deleted file mode 100644 index df110e5..0000000 --- a/themes/default/templates/profileheader.txt +++ /dev/null @@ -1,26 +0,0 @@ - -
      -
      -
      -
      - - :top: - - - :bottom: - -
      -
      -
      -
      :name: -
      @:acct: -
      :note: -
      - -
      -
      \ No newline at end of file diff --git a/themes/default/templates/reblog.txt b/themes/default/templates/reblog.txt deleted file mode 100644 index f6bc837..0000000 --- a/themes/default/templates/reblog.txt +++ /dev/null @@ -1,16 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      :name:
      -
      :media:
      -
      - :spoiler: - :text: -
      - -
      :form::descendants:
      -
      - - :notes: -
      \ No newline at end of file diff --git a/themes/default/templates/reply.txt b/themes/default/templates/reply.txt deleted file mode 100644 index 4deda20..0000000 --- a/themes/default/templates/reply.txt +++ /dev/null @@ -1,25 +0,0 @@ -
      -
      - - - - :name: - - (:acct:) - - -  - - - -
      -
      -
      :media: :replyto: :text:
      -
      - - :date: - :buttons: - -
      - -
      \ No newline at end of file diff --git a/themes/default/templates/replyform.txt b/themes/default/templates/replyform.txt deleted file mode 100644 index 32216a5..0000000 --- a/themes/default/templates/replyform.txt +++ /dev/null @@ -1,45 +0,0 @@ -
      -
      -
      -
      - -
      -
      - -
      - -
      - -
      - - -
      -  - -
      -
      - - -
      -
      - 😜 -
      -
      - - - - - - -
      -
      -
      -
      -
      -
      - diff --git a/themes/default/templates/textpost.txt b/themes/default/templates/textpost.txt deleted file mode 100644 index 300551f..0000000 --- a/themes/default/templates/textpost.txt +++ /dev/null @@ -1,23 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - - - :name: :rt: - - - - -
      -
      -
      :spoiler: :replyto: :text:
      -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      - diff --git a/themes/monad/css/color.css b/themes/monad/css/color.css index bf83380..a38ae4e 100644 --- a/themes/monad/css/color.css +++ b/themes/monad/css/color.css @@ -88,7 +88,7 @@ input[type="checkbox"]:checked+label { color: #04a0c6; } -.side_element,.topbar,.post,.postform{ +.side_element,.topbar,.post,.postform,.searchmobile{ box-shadow: 0px 0px 7px #000; } @@ -203,6 +203,10 @@ input[type="checkbox"]:checked+label { background-color: rgba(18,26,36,0.8); } +.searchmobile{ + background-color: rgb(18,26,36); +} + .toggleblur { background-color: #d8a070; color: #121a24; diff --git a/themes/monad/css/mobile.css b/themes/monad/css/mobile.css index 86775bc..93eaf15 100644 --- a/themes/monad/css/mobile.css +++ b/themes/monad/css/mobile.css @@ -402,8 +402,7 @@ aside { border-radius: 3px; } -.postform { - display:none; +.postform,.searchmobile { position:fixed; width: 100vw !important; left:0px; @@ -413,7 +412,7 @@ aside { z-index: 99; } -#postform { +#postform,#searchmobile { display:none; } diff --git a/themes/monad/css/style.css b/themes/monad/css/style.css index cb23ce9..a79c7f2 100644 --- a/themes/monad/css/style.css +++ b/themes/monad/css/style.css @@ -392,6 +392,10 @@ aside { border-radius: 3px; } +#searchmobile { + display:none; +} + .postform { width:650px; float: left; diff --git a/themes/monad/templates/post.txt b/themes/monad/templates/post.txt deleted file mode 100644 index 7b61cd9..0000000 --- a/themes/monad/templates/post.txt +++ /dev/null @@ -1,21 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - :name: :rt: - - - -
      - :spoiler: -
      :media:
      -
      - :replyto: :text: -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      diff --git a/themes/monad/templates/profileheader.txt b/themes/monad/templates/profileheader.txt deleted file mode 100644 index df110e5..0000000 --- a/themes/monad/templates/profileheader.txt +++ /dev/null @@ -1,26 +0,0 @@ - -
      -
      -
      -
      - - :top: - - - :bottom: - -
      -
      -
      -
      :name: -
      @:acct: -
      :note: -
      - -
      -
      \ No newline at end of file diff --git a/themes/monad/templates/reblog.txt b/themes/monad/templates/reblog.txt deleted file mode 100644 index f6bc837..0000000 --- a/themes/monad/templates/reblog.txt +++ /dev/null @@ -1,16 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      :name:
      -
      :media:
      -
      - :spoiler: - :text: -
      - -
      :form::descendants:
      -
      - - :notes: -
      \ No newline at end of file diff --git a/themes/monad/templates/reply.txt b/themes/monad/templates/reply.txt deleted file mode 100644 index 4deda20..0000000 --- a/themes/monad/templates/reply.txt +++ /dev/null @@ -1,25 +0,0 @@ -
      -
      - - - - :name: - - (:acct:) - - -  - - - -
      -
      -
      :media: :replyto: :text:
      -
      - - :date: - :buttons: - -
      - -
      \ No newline at end of file diff --git a/themes/monad/templates/replyform.txt b/themes/monad/templates/replyform.txt deleted file mode 100644 index 32216a5..0000000 --- a/themes/monad/templates/replyform.txt +++ /dev/null @@ -1,45 +0,0 @@ -
      -
      -
      -
      - -
      -
      - -
      - -
      - -
      - - -
      -  - -
      -
      - - -
      -
      - 😜 -
      -
      - - - - - - -
      -
      -
      -
      -
      -
      - diff --git a/themes/monad/templates/textpost.txt b/themes/monad/templates/textpost.txt deleted file mode 100644 index 300551f..0000000 --- a/themes/monad/templates/textpost.txt +++ /dev/null @@ -1,23 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - - - :name: :rt: - - - - -
      -
      -
      :spoiler: :replyto: :text:
      -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      - diff --git a/themes/phubbub/css/color.css b/themes/phubbub/css/color.css index 3454168..55e8ee9 100644 --- a/themes/phubbub/css/color.css +++ b/themes/phubbub/css/color.css @@ -191,12 +191,9 @@ input[type="checkbox"]:checked+label { .post, .rb, .textonly, -.loadmore { - background-color: #1b1b1b; - border:1px solid #2f2f2f; -} - -.postform { +.loadmore, +.postform, +.searchmobile { background-color: #1b1b1b; border:1px solid #2f2f2f; } diff --git a/themes/phubbub/css/mobile.css b/themes/phubbub/css/mobile.css deleted file mode 100644 index f2e5705..0000000 --- a/themes/phubbub/css/mobile.css +++ /dev/null @@ -1,657 +0,0 @@ -/* overall */ - -* { - font-family: arial, helvetica, sans-serif; - font-size: 12pt; -} - -a { - text-decoration:none; -} - -h1 { - font-size:20px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; - } - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.desktop{ - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100vw; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100vw; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - width: 100% !important; - display: inline-block; - text-align: center; -} - -#posts { - width: 100% !important; -} - -.content { - width: 100%; - display: inline-block; - margin:0px !important; - text-align: left; - word-break: break-all; -} - -aside { - display:none !important; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; - z-index:50; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - left: 0px; - bottom: 0px; - width: 100vw; - height: auto; - z-index: 99; -} - -/* topbar elements */ - -.mid { - display:none; -} - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: fixed; - left: 0px; - top: 45px; - width: 100vw; - max-height: 400px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:100%; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - display:none; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; - color: lightgray; -} - -.side_element a { - color: lightgray; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 90% !important; - clear: both; - display: inline-block; - margin-top: 3px; -} - -.profile { - float:left; - background-color:white; - border-radius:5px; - //width:650px; - width:100%; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu,.listmenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - display:none; - width: 50px; - background-size: cover; - height: 50px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.loader, -.loadmore, -.rb, -.textonly, -.profile { - width: 100% !important; - float: left; - text-align: center; - position: relative; - border-radius: 3px; -} - -.postform { - display:none; - position:fixed; - width: 100vw !important; - left:0px; - top:45px; - text-align: center; - border-radius: 3px; - z-index: 99; -} - -#postform { - display:none; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.postHeader *,.post_footer *{ - font-size:small; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:-198px; - width: 300px; - height: 200px; - border-radius:3px; -} - -.userinfo_co { - width: 280px; - margin: 10px; -} - -.userinfo_he { - width: 300px; - height: 100px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 48% !important; - height: 321px; - line-height: 321px; - background-color: black; - float:left; - margin:2px !important; -} - -.smaller { - width: 31% !important; - height: 212px; - line-height: 212px; - background-color: black; - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; - border-radius: 3px; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -/* -.lightbox-opened { - //background-color: #333; - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - left: 0; - overflow-y: scroll; - padding: 24px; - position: fixed; - text-align: center; - top: 0; - width: 100%; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} -*/ -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello, sans-serif; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/phubbub/css/style.css b/themes/phubbub/css/style.css deleted file mode 100644 index 838300f..0000000 --- a/themes/phubbub/css/style.css +++ /dev/null @@ -1,631 +0,0 @@ -/* overall */ -html { - scroll-behavior: smooth; -} - -* { - font-family: arial, helvetica, sans-serif; - font-size: 11pt; -} - -a { - text-decoration: none; -} - -h1 { - font-size:30px; -} - -p { - margin: 0px !important; -} - -body { - margin: 0; -} - -ul{ - padding:0px; - margin:0px; -} - -select{ - padding:5px; - margin-top:5px; - border:0px; - font-weight:bold; - font-family:fontello, sans-serif; -} - -option{ - font-family:fontello, sans-serif; -} - -label { - margin-left: 5px; - margin-right: 5px; - cursor: pointer; -} - -input[type="file"], .nloadmore { - cursor:pointer; -} - -textarea { - resize: none; -} - -/* omnipresent */ - -.mobile { - display:none !important; -} - -.link { - text-decoration: none; -} - -.external:after{ - font-family:fontello; - font-weight:normal; - content: ' '; - } - -/* basic structure */ - -.topbar { - width: 100%; - height: 45px; - margin: 0; - position: relative; -} - -.wrapper { - width: 100%; - clear: both; - display: inline-block; - text-align: center; -} - -.container { - display: inline-block; - text-align: center; -} - -#posts { - width: 800px; - float: left; -} - -aside { - margin-top: 5px; - width: 280px; - float: left; - display: inline-block; -} - -.gotop { - width: 30px; - height: 30px; - padding: 5px; - position: fixed; - display: table; - text-align: center; - right: 20px; - bottom: 20px; - border-radius: 10px; -} - -.gotop a { - text-align: center; - display: table-cell; - vertical-align: middle; - opacity: 0.7; - font-size: 20px; -} - -#hiddenside { - background-color: rgba(255, 255, 255, 0); - position: fixed; - right: 10px; - bottom: 115px; - width: 350px; - height: auto; -} - -/* topbar elements */ - -.topbutton { - vertical-align: middle; - display: table-cell; - line-height: 45px; - height: 100%; - width: 50px; - position: relative; -} - -.topicon { - text-decoration: none; - display: inline; - font-size: 20px; -} - -.ntbutton { - position:relative; -} - -.badge { - text-decoration: none; -} - -.alert { - border-radius: 90px; - width: 10px; - height: 10px; - position: absolute; - right: 15px; - top: 15px; - display: none; -} - -#notifications { - position: absolute; - right: -20px; - top: 45px; - width: 350px; - max-height: 500px; - display: none; - line-height:12px; - overflow-y:scroll; - border-radius:3px; -} - -.notif{ - width:330px; - height:80px; - display:inline-block; - text-align:left; - position:relative; -} - -#quicksend { - border-radius: 3px; - font-weight: bold; -} - -.notifContents{ - margin:10px; - display:flex; - height:60px; - max-width:325px; -} - -.nloadmore { - display:inline-block; - height:20px; - padding-top:10px; -} - -/* sidebar */ - -.side_element { - border-radius: 3px; - width: 92%; - margin: 10px; - display: inline-block; - text-align: center; -} - -.side_element li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -/* posts area elements */ - -.uploadedImage { - width: 60px; - margin: 10px 0px 10px 10px; - height: 60px; - border: 1px solid #ccc; - display: inline-block; - box-shadow: 3px 3px 3px grey; - float: left; - background-size: cover; -} - -.uploadBox { - width: 100%; - display: inline-block; - border-bottom: 1px solid #ddd; -} - -.delpic { - border-radius:90px; - display:inline-block; - cursor:pointer; -} - -#send { - padding:5px; - border-radius:3px; - font-weight:bold; - margin-top:5px; - float:left; -} - -.formbtn { - background-color:transparent; - border: 0px; - margin-top:11px; - margin-left:15px; - float:left; - width:20px; - height:20px; - line-height:20px; - text-align:center; - overflow:hidden; - font-size:20px; -} - -.formbtn label{ - margin:-5px; - font-size:20px; -} - -.element { - width: 800px; - clear: both; - display: inline-block; - margin-top: 5px; -} - -.profile,.loader { - float:left; - border-radius:5px; - width:650px; -} - -.profileButton{ - padding: 5px; - border-radius: 5px; - font-family: fontello, sans-serif; -} - -#usermenu .menu { - display: none; - width: 150px; - height: 100px; - position: absolute; - top: 45px; - left: -80px; - transition: 0.4s; -} - -#usermenu:hover>.menu, -#usermenu:active>.menu { - display: block; - transition: 0.4s; -} - -.postMenu { - cursor: pointer; - position:relative; -} - -.postMenu div{ - border-radius: 3px; -} - -.postMenu li { - margin:0px; - width:100%; - height:35px; - display:block; - text-align:center; - line-height:35px; -} - -.postMenu:hover > div{ - display:block !important; -} - -.postMenu ul { - margin:0px; - width:100%; - padding:0px; -} - -.profileMenu:hover > div, .listmenu:hover > div{ - display:block !important; -} - -.listmenu li { - font-family: fontello, sans-serif; - height:30px; - line-height:30px; - text-align:left; - padding-left:12px; - list-style-type: none; -} - -.felem { - margin-left: 10px; - float: left; -} - -.avatar { - width: 80px; - background-size: 80px; - height: 80px; - float: left; - margin: 15px; - border-radius: 10px; -} - -.post, -.rb, -.textonly, -.loadmore { - width: 650px; - float: left; - text-align: center; - position: relative; - border-radius: 3px; -} - -.postform { - width:650px; - float: left; - text-align: center; - position: relative; - border-radius: 3px; - display:block !important; -} - -.postHeader { - width: 100%; - display: inline-block; - height: 40px; - text-align: left; -} - -.previewpost { - display: none; - position: absolute; - margin-top: -100px; - width: 400px; - border-radius:3px; -} - -.user { - position:relative; -} - -.userinfo { - display: none; - position: absolute; - left:0px; - top:15px; - width: 300px; - height: auto; - border-radius:3px; - line-height:initial; - z-index:99; -} - -.userinfo_upper{ - top:-100px; -} - -.userinfo_co { - width: 280px; - margin: 10px; - text-align: center; - position:relative; -} - -.userinfo_he { - width: 300px; - height: 150px; -} - -.media { - width: 100%; - display: inline-block; -} - -.img { - width: 600px; - text-align: center; -} - -.blur { - -webkit-filter: blur(25px) brightness(70%) grayscale(100%); - /* Safari 6.0 - 9.0 */ - filter: blur(25px) brightness(70%) grayscale(100%); - opacity: 0.5; - transition: 0.4s; -} - -.toggleblur { - display:none; - cursor: pointer; - font-family: sans, fontello; -} - -.small { - width: 321px !important; - height: 321px; - line-height: 321px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.smaller { - width: 212px !important; - height: 212px; - line-height: 212px; - /* background-color: black; */ - float:left; - margin:2px !important; -} - -.icon { - width: 80px !important; - height: 80px !important; - line-height: 80px; - float:left; - text-align:center; - margin:2px !important; -} - -.postbody { - margin: 15px; -} - -.content { - width: 600px; - display: inline-block; - margin:0px !important; - text-align: left; -} - -.post_footer { - width: 630px; - display: table-cell; - clear: both; - padding: 10px; - height: 20px; - text-align: left; - border-radius: 3px; -} - -.post_buttons { - font-family: fontello; - float: right; - display: inline-block; - text-align: right; - font-size: 15pt; -} - -.post_buttons a, -.post_buttons span { - font-family: inherit; - text-decoration: none; - color: inherit; - font-size: inherit; -} - -.reply { - width: 100%; - clear: both; - text-align: left; - display: block; -} - -.note { - width: 640px; - float: left; - text-align: left; - border-radius: 5px; - padding: 5px; -} - -.button { - padding: 15px; - float: left; - text-align: center; - border-radius: 5px; - font-size: 20pt; -} - -/* pages */ - -.setting label { - display: block; - width: 40px; - height: 20px; - padding: 5px; - float: left; - margin: 0px; - text-align: center; - transition: all 0.3s ease-in-out; -} - -.setting input[type="radio"]:checked+label { - font-weight: bold; -} - - -/* other stuff */ - -/* */ -.lightbox-opened { - /* background-color: #333; */ - background-color: rgba(50, 50, 50, 0.85); - cursor: pointer; - height: 100%; - /* left: 0; */ - overflow-y: scroll; - position: fixed; - text-align: center; - top: 0; - width: 100%; - z-index:105; - &:before { - background-color: #333; - background-color: rgba(#333, 0.9); - color: #eee; - content: "x"; - font-family: sans-serif; - padding: 6px 12px; - position: fixed; - text-transform: uppercase; - } - img { - box-shadow: 0 0 6px 3px #333; - } -} - -.no-scroll { - overflow: hidden; -} - -/* */ - -.fontello { - font-family: fontello; -} - -.loading { - font-family: fontello; - color: black; - content: "\E822"; - animation-name: spin; - animation-duration: 5000ms; - animation-iteration-count: infinite; - animation-timing-function: linear; - /* transform: rotate(3deg); */ - /* transform: rotate(0.3rad);/ */ - /* transform: rotate(3grad); */ - /* transform: rotate(.03turn); */ -} - -@keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -.disabled { - background-color: black; -} diff --git a/themes/phubbub/templates/post.txt b/themes/phubbub/templates/post.txt deleted file mode 100644 index 7b61cd9..0000000 --- a/themes/phubbub/templates/post.txt +++ /dev/null @@ -1,21 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - :name: :rt: - - - -
      - :spoiler: -
      :media:
      -
      - :replyto: :text: -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      diff --git a/themes/phubbub/templates/profileheader.txt b/themes/phubbub/templates/profileheader.txt deleted file mode 100644 index df110e5..0000000 --- a/themes/phubbub/templates/profileheader.txt +++ /dev/null @@ -1,26 +0,0 @@ - -
      -
      -
      -
      - - :top: - - - :bottom: - -
      -
      -
      -
      :name: -
      @:acct: -
      :note: -
      - -
      -
      \ No newline at end of file diff --git a/themes/phubbub/templates/reblog.txt b/themes/phubbub/templates/reblog.txt deleted file mode 100644 index f6bc837..0000000 --- a/themes/phubbub/templates/reblog.txt +++ /dev/null @@ -1,16 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      :name:
      -
      :media:
      -
      - :spoiler: - :text: -
      - -
      :form::descendants:
      -
      - - :notes: -
      \ No newline at end of file diff --git a/themes/phubbub/templates/reply.txt b/themes/phubbub/templates/reply.txt deleted file mode 100644 index 4deda20..0000000 --- a/themes/phubbub/templates/reply.txt +++ /dev/null @@ -1,25 +0,0 @@ -
      -
      - - - - :name: - - (:acct:) - - -  - - - -
      -
      -
      :media: :replyto: :text:
      -
      - - :date: - :buttons: - -
      - -
      \ No newline at end of file diff --git a/themes/phubbub/templates/replyform.txt b/themes/phubbub/templates/replyform.txt deleted file mode 100644 index 32216a5..0000000 --- a/themes/phubbub/templates/replyform.txt +++ /dev/null @@ -1,45 +0,0 @@ -
      -
      -
      -
      - -
      -
      - -
      - -
      - -
      - - -
      -  - -
      -
      - - -
      -
      - 😜 -
      -
      - - - - - - -
      -
      -
      -
      -
      -
      - diff --git a/themes/phubbub/templates/textpost.txt b/themes/phubbub/templates/textpost.txt deleted file mode 100644 index 300551f..0000000 --- a/themes/phubbub/templates/textpost.txt +++ /dev/null @@ -1,23 +0,0 @@ -
      -
      -
      -
      :ancestors:
      -
      - - - :name: :rt: - - - - -
      -
      -
      :spoiler: :replyto: :text:
      -
      - -
      :notes:
      -
      :descendants:
      -
      - -
      -