I have that issue when try to fill a split node with two different colors. After using rectangle split part fill={red,blue} as an node argument the drop shadow overlap the node because I don't use the fill=color argument.
Full code:
%USER INTERFACE CLASS DIAGRAMM
\documentclass{minimal}
\usepackage[a4paper,margin=1cm,landscape]{geometry}
\usepackage{tikz}
\usepackage{xcolor}
%%%<
\usepackage{verbatim}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{5pt}%
%%%>
\begin{comment}
:Title: User Interface Class diagram
\end{comment}
%COLORS
\definecolor{Recessive}{RGB}{77, 87, 98} %BLUE
\definecolor{Dominant}{RGB}{229, 126, 49} %ORANGE
%WRITE CODE
\def\title#1{Klassendiagramm:\smallbreak \fontsize{14}{14}\textbf{\texttt{#1}}}
\def\code#1{\texttt{#1}\newline}
\def\codeEnd#1{\texttt{#1}}
\usetikzlibrary{positioning,shapes,shadows,arrows}
\begin{document}
\tikzstyle{abstract}=[rectangle, draw=black, rounded corners, fill=Recessive, drop shadow,
text centered, anchor=north, text=white, text width=3cm]
\tikzstyle{comment}=[rectangle, draw=black, rounded corners,
text centered, anchor=north, text=white, text width=3cm]
\tikzstyle{myarrow}=[->, >=open triangle 90, thick]
\tikzstyle{line}=[-, thick]
\begin{center}
\begin{tikzpicture}[node distance=3.8cm]
\node [text width=4cm] at (-7,0) {\title{Interface}};
\node (Client) [abstract, rectangle split, rectangle split parts=2]
{
\textbf{Client}
\nodepart{second}Schnittstellen
};
%NODE LEVEL 01
\node (Level01) [text width=4cm, below=2.5cm of Client] {}; %LEVEL 01
%CONSOLE
\node (Console) [abstract, rectangle split, rectangle split parts=2, left=of Level01]
{
\textbf{Console}
\nodepart{second}Benutzereingaben
};
\node (Console_Comment) [comment, rectangle split, rectangle split parts=2, rectangle split part fill={red,blue}, drop shadow, below=0.2cm of Console, text justified]
{
\textbf{Funktionen}
\nodepart{second}\code{Scripts} \code{Format} \code{getScripts} \codeEnd{getCode}
};
\end{tikzpicture}
\end{center}
\end{document}




tikz, since Mark is one of its coauthors ... its use is very simply, clear and intuitive. – Zarko Dec 25 '18 at 15:45