mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Changed how cursors act on the page
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
|
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
|
||||||
<?php include("php/header.php"); ?>
|
<?php include("php/header.php"); ?>
|
||||||
</head>
|
</head>
|
||||||
<body id="channelpage" class="noselect">
|
<body id="channelpage" class="noselect cursor-default">
|
||||||
<header>
|
<header>
|
||||||
<div class="navbar-fixed">
|
<div class="navbar-fixed">
|
||||||
<nav id="nav">
|
<nav id="nav">
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul class="title-container">
|
<ul class="title-container">
|
||||||
<li class="song-title truncate" id="song-title">
|
<li class="song-title cursor-pointer truncate" id="song-title">
|
||||||
Loading...
|
Loading...
|
||||||
</li>
|
</li>
|
||||||
<li class="search-container hide" id="search-wrapper">
|
<li class="search-container hide" id="search-wrapper">
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<?php include("header.php"); ?>
|
<?php include("header.php"); ?>
|
||||||
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/jemjlblambcgjmmhheaklfnphncdmfmb" />
|
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/jemjlblambcgjmmhheaklfnphncdmfmb" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class="noselect cursor-default">
|
||||||
<header>
|
<header>
|
||||||
<nav id="fp-nav">
|
<nav id="fp-nav">
|
||||||
<div class="nav-wrapper">
|
<div class="nav-wrapper">
|
||||||
|
|||||||
@@ -56,7 +56,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<footer class="page-footer">
|
<footer class="page-footer cursor-default">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col l6 s12">
|
<div class="col l6 s12">
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ if(isset($_GET['chan'])){
|
|||||||
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
|
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
|
||||||
<?php include("header.php"); ?>
|
<?php include("header.php"); ?>
|
||||||
</head>
|
</head>
|
||||||
<body class="noselect">
|
<body class="noselect cursor-default">
|
||||||
<header>
|
<header>
|
||||||
<nav id="fp-nav">
|
<nav id="fp-nav">
|
||||||
<div class="nav-wrapper">
|
<div class="nav-wrapper">
|
||||||
|
|||||||
@@ -59,6 +59,25 @@
|
|||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.select{
|
||||||
|
-webkit-touch-callout: initial;
|
||||||
|
-webkit-user-select: initial;
|
||||||
|
-khtml-user-select: initial;
|
||||||
|
-moz-user-select: initial;
|
||||||
|
-ms-user-select: initial;
|
||||||
|
user-select: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
#chatchannel li, #chatall li{
|
||||||
|
cursor:text;
|
||||||
|
-webkit-touch-callout: initial;
|
||||||
|
-webkit-user-select: initial;
|
||||||
|
-khtml-user-select: initial;
|
||||||
|
-moz-user-select: initial;
|
||||||
|
-ms-user-select: initial;
|
||||||
|
user-select: initial;
|
||||||
|
}
|
||||||
|
|
||||||
#channel-load{
|
#channel-load{
|
||||||
/*display:none;*/
|
/*display:none;*/
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -500,6 +519,14 @@ hide mdi-action-visibility mdi-action-visibility-off
|
|||||||
text-shadow:rgba(0,0,0,0) 0px 0px 0px;
|
text-shadow:rgba(0,0,0,0) 0px 0px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cursor-pointer{
|
||||||
|
cursor:pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cursor-default{
|
||||||
|
cursor:default;
|
||||||
|
}
|
||||||
|
|
||||||
.contact-button-submit:hover{
|
.contact-button-submit:hover{
|
||||||
background-color:#2d2d2d;
|
background-color:#2d2d2d;
|
||||||
color:white;
|
color:white;
|
||||||
|
|||||||
Reference in New Issue
Block a user