A
A
Alexey Nikolaev2017-07-04 20:52:42
PHP
Alexey Nikolaev, 2017-07-04 20:52:42

How to remove push effect from input button in IE?

Good evening.
Fiddle problems (IE 10, IE 11). How to remove 3D effect on button click? Nothing helps. I read on stackoverflow, they recommend using button + span, but this is the last option.
There are ways? Maybe refer to the shadow dom of the browser? Tried input span, didn't help.
Thanks in advance.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
S
sergmit, 2018-12-17
@Shv_sergey

Or like this:

$project_id = empty($_SESSION['selected_menu_item_id']) ? '' : 
    "tasks.project_id = ".$_SESSION['selected_menu_item_id']." AND";
$current_tasks_list_query = "SELECT
        tasks.id AS ID,
        tasks.name AS TASK_NAME,
        tasks.deadline_datetime AS TASK_DEADLINE,
        tasks.status AS TASK_STATUS,
        projects.name AS PROJECT_NAME
        FROM tasks 
        JOIN projects
        ON tasks.project_id = projects.id
        WHERE
        $project_id
        tasks.author_id = '".$USER['id']."'";

P
ponaehal, 2018-12-17
@ponaehal

There are all sorts of useful functions for determining NULL values ​​of the NVL/NVL2 type (Oracle), but I suspect that they are implemented differently in different DBMS. And yet the general meaning will be:

WHERE
        (tasks.project_id = ".$_SESSION['selected_menu_item_id']." 
AND tasks.author_id = '".$USER['id']."'")
OR (".$_SESSION['selected_menu_item_id']."  <b>is null</b>
AND tasks.author_id = '".$USER['id']."'")

C
Conan the Barbarian, 2017-07-05
@JaredWinter

Try type="button" -> type="submit" instead.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question