UserCP and Other Private User Area Revisions (Phase 0)


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? UserCP and Other Private User Area Revisions (Phase 0)
# 1  
Old 09-03-2018
UserCP and Other Private User Area Revisions (Phase 0)

Hey,

Having made a lot of progress on the "public facing" part of UNIX.COM, I may start working on remodeling the UserCP and other private areas.

Today, I made some small changes; but nothing major in the UserCP area.

However, I have not yet decided what to do with the UserCP:
  1. Keep the current table format and just clean up.
  2. Convert the tables to divs and reorganize and add flex box.
  3. Completely revamp the entire UserCP area.

I'm considering:

Convert the tables to divs and reorganize and add flex box.

But that's a lot of work; and I don't want to do it if I then think I will completely revamp to something different.

Today, I added some quick and dirty simply jQuery to the USERCP_SHELL template (to fix some bugs and quirks) as follows:


Code:
$(window).ready(function() {
  $(".neo-threadbit-thread-info").css({ "background-color": "white" });
  $(".fa-comment").css({ padding: "0px 10px 10px 0px" });
  $(".neo-threadbit-thread-icon")
    .css({ "background-color": "white", padding: "0px", margin: "0px" })
    .text("");
  $(".neo-table-divs-border").css({
    margin: "15px 0px 0px 0px",
    padding: "10px 20px 10px 20px"
  });
  $(".tborder")
    .addClass("neo-usercp-table")
    .removeClass("tborder");
  $(".neo-usercp-table").css({
    "border-width": "2px 1px 1px 1px",
    "border-style": "solid",
    "border-color": "rgba(126, 133, 192, 0.8)"
  });
  $("fieldset").css({
    "border-width": "1px 1px 1px 1px",
    "border-style": "solid",
    "border-color": "rgba(126, 133, 192, 0.8)"
  });
  $("#neo-usercp-html").css({
    width: "90%",
    margin: "0px 0px 0px 20px",
    overflow: "auto"
  });
});

Wrapping the HTML output of a number of UserCP HTML code in many UserCP PHP scripts with the id="neo-usercp-html" attribute and making some small changes here and there, just to clean up.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. What is on Your Mind?

New UserCP Update Profile Image Page (UserCP Screeching Frog 0.7485)

Update! UserCP Screeching Frog 0.7485 Created a new page for uploaded a profile picture (profile pictures are different than avatar pictures). https://www.unix.com/usercp/#/settings/other https://www.unix.com/members/1-albums225-picture1158.png ... (0 Replies)
Discussion started by: Neo
0 Replies

2. UNIX for Advanced & Expert Users

Ssh public/private key user login problem

I have a user account configuration with ssh public/private key that works on multiple servers centos and rhel. One server (Server F) that is not working in centos 6.8. When i ssh into server f I get prompted for a password. I have verified the config and it all is good. I put sshd into debug... (8 Replies)
Discussion started by: bash_in_my_head
8 Replies

3. Shell Programming and Scripting

XML Phase with awk

Hi Guys, Input XML File :- <managedObject class="RMOD_R" distName="MRBTS-101/X/R-7"> <list name="activeCellsList"> <p>15</p> <p>201</p> </list> <p name="aldManagementProtocol">True</p> <p name="serialNumber">845</p> </managedObject> Output :- ... (5 Replies)
Discussion started by: pareshkp
5 Replies

4. War Stories

Postbit Changes (Phase II Upgrade)

Next in the pipeline, thinking I will work on postbit (the core of the posts) and try to get Bootstrap and badges working in postbit and not break the quick editors in the post. Note, I had to turn off the scrollbars in postbit for now because when I turn them on, it breaks the quick editor in... (11 Replies)
Discussion started by: Neo
11 Replies

5. Programming

Want to develop Input Area for user to Update Content

Hello, What would it take to create a system that would enable someone to visit a particular management page that would allow this person to provide content and Have this content then come into view on the home page of a website? The content might just be text that someone would... (1 Reply)
Discussion started by: AimyThomas
1 Replies

6. UNIX and Linux Applications

Copy numerous private Samba-shares as one user. (Syntax question)

Hello Forum, I was overwhelmed by how fast and correct the responses to my first question in this forum was, and I hope I expreience this again today. The reason is that I have to copy a fileserver (Ubuntu 8.04 32 with Samba) to another server via Internet within tomorrow. I have no problem... (0 Replies)
Discussion started by: primaxx
0 Replies

7. Solaris

init phase

Hello, Can somebody explain me the relationship between /sbin and /etc directories ? what is the relationship between them and what are the roles of files such as rcd.1 etc? (1 Reply)
Discussion started by: saudsos
1 Replies

8. AIX

checking the version revisions of a java file inside the ear using KSHELL in AIX.

consider on day1, in PVCS repository we have java files like a.java,b.java with version revision 1.0, through ANT build script we have compiled and created an ear,named c.ear in AIX build server.we have transfered this ear from build server to portal server through FTP using KSHELL. consider... (0 Replies)
Discussion started by: kareemaashik
0 Replies
Login or Register to Ask a Question