php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #66217 css fixes
Submitted: 2013-12-02 10:54 UTC Modified: 2013-12-04 20:16 UTC
From: admin at karldeux dot com Assigned:
Status: Closed Package: Website problem
PHP Version: Irrelevant OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: admin at karldeux dot com
New email:
PHP Version: OS:

 

 [2013-12-02 10:54 UTC] admin at karldeux dot com
Description:
------------
There are some erros in your css sheet. Note that you should try to avoid vendor-prefixed property names.

Test script:
---------------
.refentry .refpurpose {
  background-color:#F0F0F0;
  border-top-color: #737373;
  border-bottom-color:1px solid #D6D6D6; <-- invalid (switch to "border-bottom")
  border-radius:0 0 2px 2px;
  box-shadow:
    inset 2px 0 2px -2px #D6D6D6,
    inset -2px 0 2px -2px #D6D6D6;
}

#usernotes h3.title {
    border-bottom: 0.166666667em solid;
    margin-bottom: -0.166666667.em; <-- invalid (switch to "em" without dot)
    line-height:2.666666667;
}

. <-- invalid (open selector, remove the dot)
/* }}} */

/* {{{ lists */


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2013-12-04 20:16 UTC] admin at karldeux dot com
-Status: Open +Status: Closed
 [2013-12-04 20:16 UTC] admin at karldeux dot com
Fixed by myself.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Nov 20 07:00:01 2025 UTC